import { MyApiLive } from './effect';
export default {
async fetch(request) {
// ??? How can run MyApiLive layer by passing request and return response?
return new Response(JSON.stringify(result, null, 2));
},
};
import { MyApiLive } from './effect';
export default {
async fetch(request) {
// ??? How can run MyApiLive layer by passing request and return response?
return new Response(JSON.stringify(result, null, 2));
},
};