Versions in this module Expand all Collapse all v3 v3.0.1 Mar 26, 2025 v3.0.0 May 7, 2024 Changes in this version + func App(appName string, routes RoutesFx, options ...Option) fx.Option + func GetFiberApp(appName string) string + func RunApp(addr, appName string, shutdownTimeout time.Duration) fx.Option + type Option func(opts *appOptions) + func WithAfterCreate(afterCreate func(app *fiber.App)) Option + func WithFiberConfig(cfg fiber.Config) Option + type RouteFx func(string, string) fx.Option + func Delete(path string, handler any) RouteFx + func DeleteWithRouterCallback(path string, cb func(fiber.Router), handler any) RouteFx + func Get(path string, handler any) RouteFx + func GetWithRouterCallback(path string, cb func(fiber.Router), handler any) RouteFx + func Patch(path string, handler any) RouteFx + func PatchWithRouterCallback(path string, cb func(fiber.Router), handler any) RouteFx + func Post(path string, handler any) RouteFx + func PostWithRouterCallback(path string, cb func(fiber.Router), handler any) RouteFx + func Put(path string, handler any) RouteFx + func PutWithRouterCallback(path string, cb func(fiber.Router), handler any) RouteFx + func Route(method, path string, handler any) RouteFx + func RouteWithRouterCallback(method, path string, cb func(fiber.Router), handler any) RouteFx + type RouteOptions func(*routeOptions) + func WithPrefix(prefix string) RouteOptions + func WithRouterCallback(cb func(fiber.Router)) RouteOptions + type RoutesFx func(string) fx.Option + func Routes(routes []RouteFx, opts ...RouteOptions) RoutesFx