Files
2025-09-24 17:02:44 +08:00

9 lines
232 B
TypeScript

import { json, type LoaderFunctionArgs } from '@remix-run/node';
export const loader = async ({ request: _request }: LoaderFunctionArgs) => {
return json({
status: 'healthy',
timestamp: new Date().toISOString(),
});
};