mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-04 21:29:06 +00:00
7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import { json } from '@sveltejs/kit';
|
|
import type { RequestHandler } from './$types';
|
|
|
|
export const GET: RequestHandler = async () => {
|
|
return json({ status: 'ok', timestamp: new Date().toISOString() });
|
|
};
|