diff options
| author | Fuwn <[email protected]> | 2024-02-07 07:25:13 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-07 07:25:13 -0800 |
| commit | 9cfdd2cca03fc23417e54b4e8d16ffa744af55e8 (patch) | |
| tree | 9141b9271ea86a8de805d62e1624fa26bd26dc99 /src | |
| parent | fix(layout): single identity fetch (diff) | |
| download | due.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.ts | 1 |
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 }); |