print dashboard url

This commit is contained in:
Fabricio 2017-11-21 19:36:55 -02:00
parent e6c9e34f85
commit cb937eae0b

View file

@ -32,7 +32,8 @@ func main() {
http.Handle("/socket.io/", getSocketHandler())
http.Handle("/"+dashboard+"/", getDashboardHandler())
fmt.Printf("\nListening on http://localhost:%s\n\n", proxyPort)
fmt.Printf("\nListening on http://localhost:%s", proxyPort)
fmt.Printf("\n http://localhost:%s/%s\n\n", proxyPort, dashboard)
http.ListenAndServe(":"+proxyPort, nil)
}