From 77c6c6ed028e45e79ab9f9446b97c9449f021fa5 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Wed, 5 Jun 2019 13:34:26 -0600 Subject: the go way --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 81a032e..54cc497 100644 --- a/main.go +++ b/main.go @@ -18,11 +18,11 @@ func parseArgs() string { // We have one arg possible comma separated if len(os.Args) == 2 { - return (os.Args[1]) + return os.Args[1] } else { log.Fatalln("You have provided too many arguments") } - return ("") + return "" } func fetchKeys(username string) string { @@ -42,9 +42,9 @@ func fetchKeys(username string) string { log.Fatal(err) } bodyString := string(bodyBytes) - return (bodyString) + return bodyString } - return ("") + return "" } // Need to fix this to not be an infinite loop -- cgit v1.2.3