Skip to content

hello

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