Add tunnel component and map connector component
This commit is contained in:
8
src/routes/healthz/+server.ts
Normal file
8
src/routes/healthz/+server.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
|
||||
export const GET: RequestHandler = () => {
|
||||
return json({ status: 'ok', uptime: process.uptime() }, {
|
||||
status: 200
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user