Skip to content

Commit

Permalink
Add website ping endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
SapiensAnatis committed Jun 30, 2024
1 parent 1bb7630 commit 59a2cc3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Website/src/routes/ping/+server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { RequestHandler } from './$types';

export const GET: RequestHandler = async () => {
return new Response(null, { status: 200 });
};

0 comments on commit 59a2cc3

Please sign in to comment.