UseOnce either inserts a middleware, or on the basis of the middleware already existing, replace that existing middleware instead. To register a middleware for error handlers, look `UseError` method instead.
(handlers ...context.Handler)
| 231 | // replace that existing middleware instead. |
| 232 | // To register a middleware for error handlers, look `UseError` method instead. |
| 233 | UseOnce(handlers ...context.Handler) |
| 234 | // Done appends to the very end, Handler(s) to the current Party's routes and child routes. |
| 235 | // The difference from .Use is that this/or these Handler(s) are being always running last. |
| 236 | Done(handlers ...context.Handler) |
no outgoing calls
no test coverage detected