Skip to content

Commit

Permalink
feat: get test api route
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMysterius committed Sep 1, 2024
1 parent 4df6659 commit 2544334
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/routes/api/v1/test/+server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { json } from '@sveltejs/kit';

export function GET() {
return json({ version: 1 }, { status: 200, statusText: 'OK' });
}

0 comments on commit 2544334

Please sign in to comment.