async function handler(request, env, context) {
/// generate response...
context.waitUntil(saveResultToKV(stuff, env))
context.waitUntil(callExternalService(env))
return response;
}
async function handler(request, env, context) {
/// generate response...
context.waitUntil(saveResultToKV(stuff, env))
context.waitUntil(callExternalService(env))
return response;
}