1
2
3
4
5
6
// This val will respond with "Hello World" to any incoming HTTP request
export default async function(req: Request): Promise<Response> {
return new Response("Hello World");
}