Versions in this module Expand all Collapse all v1 v1.0.0 May 9, 2022 Changes in this version + func Init() + func RegisterRoute(route string, handler HandlerFUNC) + func StartHttpServer() error + type Context struct + func (m *Context) Form() url.Values + func (m *Context) Get(key string) string + func (m *Context) GetBody() []byte + func (m *Context) PostForm() url.Values + func (m *Context) Write(data interface{}) + type Controller struct + func (m *Controller) Context() *Context + type Handler interface + type HandlerFUNC func(ctx *Context) + type HttpServerHandler struct + func (*HttpServerHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) + type Route interface