export async function httpTriggerForHooks()

in app/v4/src/functions/httpTriggerForHooks.ts [6:13]


export async function httpTriggerForHooks(
    request: HttpRequest,
    extraInput: string,
    context: InvocationContext
): Promise<HttpResponseInit> {
    context.log(`httpTriggerForHooks was triggered with second input ${extraInput}`);
    return { body: 'hookBodyResponse' };
}