(...args: unknown[])
| 20 | |
| 21 | // We shorten function name to allow for shorter cloud resource names |
| 22 | export async function httpReq(...args: unknown[]) { |
| 23 | const handler = await cloudHandler(); |
| 24 | return handler.processHttpRequest(...args); |
| 25 | } |
| 26 | |
| 27 | // We shorten function name to allow for shorter cloud resource names |
| 28 | export async function httpSignedReq(...args: unknown[]) { |
nothing calls this directly
no test coverage detected