(
req: IncomingMessage,
res: ServerResponse,
)
| 47 | } |
| 48 | |
| 49 | createContext( |
| 50 | req: IncomingMessage, |
| 51 | res: ServerResponse, |
| 52 | ): ParameterizedContext<any, DefaultContext, unknown> { |
| 53 | const context = super.createContext(req, res); |
| 54 | return context as Context; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * 路由注册 |
nothing calls this directly
no outgoing calls
no test coverage detected