mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
597f2d8d4d
Fixes https://github.com/denoland/deno/issues/25114 --------- Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: crowlkats <crowlkats@toaxl.com> Co-authored-by: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com>
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
console.error("starting serve");
|
|
export default {
|
|
fetch(_req: Request) {
|
|
console.error("serving request");
|
|
return new Response("deno serve parallel");
|
|
},
|
|
};
|