From a6589acd20071d35ea3b1d9c23331e7a927ef0a5 Mon Sep 17 00:00:00 2001 From: Levi Olson Date: Wed, 9 May 2018 14:28:37 -0500 Subject: [PATCH] Step 1 --- main.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..1e47927 --- /dev/null +++ b/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" + _ "net/http" +) + +func main() { + fmt.Println("Hello HTTP") +}