From 0ab21e12f36723cf7582fb12580e1d6894a38156 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 16 Nov 2017 08:32:42 -0800 Subject: [PATCH] Reformat cmd/utc/main.go. --- cmd/utc/main.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/utc/main.go b/cmd/utc/main.go index a46c98d..ec227bf 100644 --- a/cmd/utc/main.go +++ b/cmd/utc/main.go @@ -11,12 +11,12 @@ import ( ) var ( - format = "2006-01-02 15:04" // Format that will be used for times. - outFormat = format + " MST" // Output format. - tz = "Local" // String descriptor for timezone. - fromLoc = time.Local // Go time.Location for the named timezone. - fromUnix bool // Input times are Unix timestamps. - toLoc = time.UTC // Go time.Location for output timezone. + format = "2006-01-02 15:04" // Format that will be used for times. + outFormat = format + " MST" // Output format. + tz = "Local" // String descriptor for timezone. + fromLoc = time.Local // Go time.Location for the named timezone. + fromUnix bool // Input times are Unix timestamps. + toLoc = time.UTC // Go time.Location for output timezone. ) func usage(w io.Writer) {