package main import "log" import "net/http" import "hnakra/service" func main () { http.HandleFunc("/hello/", hellorld) err := service.NewHTTP("Hellorld", "A test service.", "@", "/hello/").Run() if err != nil { log.Println("XXX", err) } } func hellorld (res http.ResponseWriter, req *http.Request) { res.Header().Add("content-type", "text/plain") res.WriteHeader(200) res.Write([]byte("Hellorld!\n")) }