aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-02-07 07:25:13 -0800
committerFuwn <[email protected]>2024-02-07 07:25:13 -0800
commit9cfdd2cca03fc23417e54b4e8d16ffa744af55e8 (patch)
tree9141b9271ea86a8de805d62e1624fa26bd26dc99 /src
parentfix(layout): single identity fetch (diff)
downloaddue.moe-9cfdd2cca03fc23417e54b4e8d16ffa744af55e8.tar.xz
due.moe-9cfdd2cca03fc23417e54b4e8d16ffa744af55e8.zip
feat(api): health check endpoint
Diffstat (limited to 'src')
-rw-r--r--src/routes/api/health/+server.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/routes/api/health/+server.ts b/src/routes/api/health/+server.ts
new file mode 100644
index 00000000..66a62024
--- /dev/null
+++ b/src/routes/api/health/+server.ts
@@ -0,0 +1 @@
+export const GET = () => new Response('OK', { status: 200 });