diff options
Diffstat (limited to 'src/app/api')
-rw-r--r-- | src/app/api/route.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app/api/route.ts b/src/app/api/route.ts new file mode 100644 index 0000000..a413bcd --- /dev/null +++ b/src/app/api/route.ts @@ -0,0 +1,3 @@ +export async function GET(request: Request) { + return new Response("Hello, this is the API route!"); +}
\ No newline at end of file |