From 771237d5e5018ac9e6dd115a59007fd0319091f0 Mon Sep 17 00:00:00 2001 From: Kelly Griffin <44957758+KellyGriffin@users.noreply.github.com> Date: Sun, 3 Feb 2019 16:01:40 +1100 Subject: [PATCH] Update main.go --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 21b7088..23c22e8 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "log" ) -const webContent = "Hello World!" +const webContent = "Hello Rancher" func main() { http.HandleFunc("/", helloHandler) @@ -15,4 +15,4 @@ func main() { func helloHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, webContent) -} \ No newline at end of file +}