mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
812f2e4c22
Fixes https://github.com/denoland/deno/issues/23651 Co-authored-by: Satya Rohith <me@satyarohith.com>
5 lines
105 B
TypeScript
5 lines
105 B
TypeScript
export default {
|
|
fetch(_req: Request) {
|
|
return new Response("deno serve --port 0 works!");
|
|
},
|
|
};
|