Skip to content

Releases: phper08/learngit

hello

20 Feb 11:00
Compare
Choose a tag to compare
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")
}