Feature Proposal Description
Check out this library, guys: github.com/TDiblik/gofiber-swagger β I think this is how Fiber should have official Swagger support.
Feature Examples
fiberApp.Post(
"/create",
&gofiberswagger.RouteInfo{
RequestBody: gofiberswagger.NewRequestBodyFullyCustom[dto.User](
"",
true,
[]string{"multipart/form-data"},
),
Responses: gofiberswagger.NewResponses(
gofiberswagger.NewResponseInfo[dto.User]("200", ""),
),
},
handlers.CreateUser,
)
Checklist:
Feature Proposal Description
Check out this library, guys: github.com/TDiblik/gofiber-swagger β I think this is how Fiber should have official Swagger support.
Feature Examples
Checklist: