From d55671a0fcd7ff85c5cea767d59d888045cc16b2 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Mon, 13 Oct 2014 18:40:17 -0500 Subject: [PATCH] Add view instructions during startup --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 37e42ae..fe965c7 100644 --- a/main.go +++ b/main.go @@ -90,6 +90,7 @@ func main() { router.GET("/history", API_History) router.GET("/static/:type/:name", API_ServeAsset) - fmt.Println("Starting server at 0.0.0.0:8080") + fmt.Println("Starting server...") + fmt.Println("Once started you can view application at http://localhost:8080") router.Run(":8080") }