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