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)) }