()
| 1242 | } |
| 1243 | |
| 1244 | func (app *App) selectRequestHandler() fasthttp.RequestHandler { |
| 1245 | if app.hasCustomCtx { |
| 1246 | return app.customRequestHandler |
| 1247 | } |
| 1248 | return app.defaultRequestHandler |
| 1249 | } |
| 1250 | |
| 1251 | // Stack returns the raw router stack. |
| 1252 | func (app *App) Stack() [][]*Route { |
no outgoing calls
no test coverage detected