(...args: unknown[])
| 26 | |
| 27 | // We shorten function name to allow for shorter cloud resource names |
| 28 | export async function httpSignedReq(...args: unknown[]) { |
| 29 | const handler = await cloudHandler(); |
| 30 | return handler.processHttpSignedDataRequest(...args); |
| 31 | } |
| 32 | |
| 33 | // We shorten function name to allow for shorter cloud resource names |
| 34 | export async function signOevReq(...args: unknown[]) { |
nothing calls this directly
no test coverage detected