RegisterHandlers creates http.Handler with routing matching OpenAPI spec.
(router fiber.Router, si ServerInterface)
| 80 | |
| 81 | // RegisterHandlers creates http.Handler with routing matching OpenAPI spec. |
| 82 | func RegisterHandlers(router fiber.Router, si ServerInterface) { |
| 83 | RegisterHandlersWithOptions(router, si, FiberServerOptions{}) |
| 84 | } |
| 85 | |
| 86 | // RegisterHandlersWithOptions creates http.Handler with additional options |
| 87 | func RegisterHandlersWithOptions(router fiber.Router, si ServerInterface, options FiberServerOptions) { |
searching dependent graphs…