(...args: unknown[])
| 14 | } |
| 15 | |
| 16 | export async function run(...args: unknown[]) { |
| 17 | const handler = await cloudHandler(); |
| 18 | return handler.run(...args); |
| 19 | } |
| 20 | |
| 21 | // We shorten function name to allow for shorter cloud resource names |
| 22 | export async function httpReq(...args: unknown[]) { |
nothing calls this directly
no test coverage detected