(ctx CustomCtx)
| 84 | } |
| 85 | |
| 86 | func isCustomCtx(ctx CustomCtx) bool { |
| 87 | if ctx == nil { |
| 88 | return false |
| 89 | } |
| 90 | _, ok := ctx.(*DefaultCtx) |
| 91 | return !ok |
| 92 | } |
| 93 | |
| 94 | func (app *App) acquireDefaultCtx(fctx *fasthttp.RequestCtx) (*DefaultCtx, bool) { |
| 95 | rawCtx := app.pool.Get() |
no outgoing calls
no test coverage detected