Documentation
¶
Index ¶
- type Handle
- type MyRouter
- func (mr *MyRouter) DELETE(path string, reqHandler Handle)
- func (mr *MyRouter) GET(path string, reqHandler Handle)
- func (mr *MyRouter) Group(path string, fn func(r *MyRouter))
- func (mr *MyRouter) Handle(path, method string, reqHandler Handle)
- func (mr *MyRouter) PATCH(path string, reqHandler Handle)
- func (mr *MyRouter) POST(path string, reqHandler Handle)
- func (mr *MyRouter) PUT(path string, reqHandler Handle)
- type Options
- type Router
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handle ¶
type Handle func(*fasthttp.RequestCtx) *response.JSONResponse
Click to show internal directories.
Click to hide internal directories.