We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec2397 commit b9fe92fCopy full SHA for b9fe92f
main.go
@@ -41,6 +41,6 @@ func main() {
41
42
http.HandleFunc("/$$ggrok", s.Register)
43
http.HandleFunc("/", s.Proxy)
44
- log.Println("Server started")
45
- log.Fatal(http.ListenAndServe("localhost:"+string(port), nil))
+ log.Println("Server started at port:", port)
+ log.Fatal(http.ListenAndServe(":"+port, nil))
46
}
0 commit comments