Releases: phper08/learngit
Releases · phper08/learngit
hello
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")
}