From 7a626b6a36fcb5373e960cf5b393123e891723d1 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 10 Nov 2012 20:41:27 -0500 Subject: [PATCH] TRIVIAL go fmt --- gotime/src/meatballhat.com/amqpfun-runner/main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gotime/src/meatballhat.com/amqpfun-runner/main.go b/gotime/src/meatballhat.com/amqpfun-runner/main.go index c05a0e3..6bbd0a2 100644 --- a/gotime/src/meatballhat.com/amqpfun-runner/main.go +++ b/gotime/src/meatballhat.com/amqpfun-runner/main.go @@ -1,7 +1,7 @@ package main import ( - "fmt" + "fmt" "os" ) @@ -12,10 +12,10 @@ import ( const USAGE = "Usage: amqpfun-runner (publish|consume)" func main() { - if len(os.Args) < 2 { - fmt.Println(USAGE) - os.Exit(1) - } + if len(os.Args) < 2 { + fmt.Println(USAGE) + os.Exit(1) + } if os.Args[1] == "publish" { amqpfun.Publish() } else if os.Args[1] == "consume" {