Versions in this module Expand all Collapse all v0 v0.0.2 Oct 15, 2022 Changes in this version type Application + FiberApp App v0.0.1 Oct 15, 2022 Changes in this version + func ErrorHandler(ctx *fiber.Ctx, err error) error + type App struct + type Application struct + UseLogger bool + UseRecovery bool + UseRequestID bool + UseSwagger bool + func (a *Application) Build() *App + func (a *Application) Register(verb string, path string, action func(context *Context) error) *Application + func (a *Application) Start(addr string) error + type Context struct + type Error struct + Message string + StatusCode int + func NewError(statusCode int, message string) *Error + func (e Error) Error() string + type Route struct + Action func(context *Context) error + Path string + Verb string