(file: Bun.BunFile)
| 33 | type StaticHandler = () => Response | Promise<Response>; |
| 34 | |
| 35 | const htmlResponse = (file: Bun.BunFile): Response => |
| 36 | new Response(file, { |
| 37 | headers: { "content-type": "text/html", "cache-control": "no-store" }, |
| 38 | }); |
| 39 | |
| 40 | const oauthClientMetadataResponse = (requestUrl: string, webRequest: Request): Response => |
| 41 | new Response( |
no outgoing calls
no test coverage detected