Documentation ¶ Index ¶ type Base func New(name string) *Base func (b *Base) AddMiddleware(mw fiber.Handler) *Base func (b *Base) Middlewares() []fiber.Handler func (b *Base) Name() string func (b *Base) Prefix() string func (b *Base) Routes() []route.Route func (b *Base) SetPrefix(p string) *Base type Controller Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Base ¶ type Base struct { // contains filtered or unexported fields } func New ¶ func New(name string) *Base func (*Base) AddMiddleware ¶ func (b *Base) AddMiddleware(mw fiber.Handler) *Base func (*Base) Middlewares ¶ func (b *Base) Middlewares() []fiber.Handler func (*Base) Name ¶ func (b *Base) Name() string func (*Base) Prefix ¶ func (b *Base) Prefix() string func (*Base) Routes ¶ func (b *Base) Routes() []route.Route func (*Base) SetPrefix ¶ func (b *Base) SetPrefix(p string) *Base type Controller ¶ type Controller interface { Routes() []route.Route Prefix() string Middlewares() []fiber.Handler Name() string } Source Files ¶ View all Source files controller.go Click to show internal directories. Click to hide internal directories.