0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-10 06:07:03 -04:00

Added test for registerDeclarativeServer

Added test case for registerDeclarativeServer  like we discussed over email
This commit is contained in:
ricfrst 2024-10-28 21:17:29 -04:00
parent 6e0872c1f6
commit cc34b8d0b3
4 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1 @@

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,3 @@
export const fetch = (req: Request) => {
return new Response("Hello from declarative server!");
};