Status Status Sets the HTTP status for the response. Method is a chainable . func ( c * Ctx ) Status ( status int ) * Ctx app . Get ( "/fiber" , func ( c * ...
ClearCookie ClearCookie Expire a client cookie (or all cookies if left empty) func ( c * Ctx ) ClearCookie ( key ... string ) app . Get ( "/" , func ( c * fiber ....
ClearCookie ClearCookie Expire a client cookie (or all cookies if left empty) c . ClearCookie ( key ... string ) app . Get ( "/" , func ( c * fiber . Ctx ) { /...
🎭 Grouping Paths Group Handlers 🎭 Grouping Paths Like Routing , groups can also have paths that belong to a cluster. func main () { app := fiber . New () api...
Accepts Accepts Checks, if the specified extensions or content types are acceptable. Based on the request’s Accept HTTP header. c . Accepts ( types ... string ) ...
New New This method creates a new App named instance.You can pass optional settings when creating a new instance fiber . New ( settings ... Settings ) * App packag...
Accepts Accepts Checks, if the specified extensions or content types are acceptable. Based on the request’s Accept HTTP header. func ( c * Ctx ) Accepts ( offers ...
Accepts Accepts Checks, if the specified extensions or content types are acceptable. Based on the request’s Accept HTTP header. func ( c * Ctx ) Accepts ( offers ....