We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
227a697
package main import ( "fmt" "net/http" ) func main() { http.HandleFunc("/", handler) http.ListenAndServe("0.0.0.0:60008", nil) } func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "hello,world") }