From 2e581abe2b64f2de933c9029983a809e4f99be2c Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 4 Jun 2015 01:25:36 +0900 Subject: [PATCH] example/_server: Add a kind message --- example/_server/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/example/_server/main.go b/example/_server/main.go index e87fe0cf3..79651abc9 100644 --- a/example/_server/main.go +++ b/example/_server/main.go @@ -143,5 +143,6 @@ func main() { http.HandleFunc("/main.js", serveMainJS) http.HandleFunc("/main.js.map", serveMainJSMap) http.Handle("/", http.FileServer(http.Dir(rootPath))) + fmt.Printf("http://localhost:%d/\n", *port) log.Fatal(http.ListenAndServe(":"+strconv.Itoa(*port), nil)) }