Reformat cmd/utc/main.go.

This commit is contained in:
Kyle Isom 2017-11-16 08:32:42 -08:00
parent 832475db56
commit 0ab21e12f3
1 changed files with 6 additions and 6 deletions

View File

@ -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) {