Quick healthcheck endpoint for later

Will be used in docker deployment down the road
This commit is contained in:
Nick Bland 2024-04-09 23:11:35 +10:00
parent ef055880aa
commit 61990f41ac
Signed by: NickBland
GPG Key ID: 31CADD9E5FDD798C

View File

@ -0,0 +1,5 @@
import type { RequestHandler } from "./$types";
export const GET: RequestHandler = ({ url }) => {
return new Response();
};