(input: RequestInfo | URL, init?: RequestInit)
| 21 | } as unknown as ExecutionContext; |
| 22 | |
| 23 | function dispatchFetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response> { |
| 24 | let request = input instanceof Request ? input : new Request(input, init); |
| 25 | return handleRequest(request, env, context); |
| 26 | } |
| 27 | |
| 28 | function fileResponse(path: string): Response { |
| 29 | return new Response(Bun.file(path)); |
no test coverage detected