(functionName: string, handler: HttpFunction)
| 84 | * @public |
| 85 | */ |
| 86 | export const http = (functionName: string, handler: HttpFunction): void => { |
| 87 | register(functionName, 'http', handler); |
| 88 | }; |
| 89 | |
| 90 | /** |
| 91 | * Register a function that handles CloudEvents. |
nothing calls this directly
no test coverage detected