You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
501 B

package main
import (
"flag"
"fmt"
user "git.diulo.com/mogfee/kit/api"
"git.diulo.com/mogfee/kit/example/service"
"git.diulo.com/mogfee/kit/rest"
"net/http"
)
func main() {
flag.Parse()
srv := rest.NewServer(rest.RestConf{
Host: "localhost",
Port: 8998,
})
srv.Use(func(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
next(w, r)
}
})
user.RegisterUserHTTPServer(srv, service.NewUserService("abc"))
fmt.Println(srv.Start())
}