bolt.diy/app/routes/api.health.ts

9 lines
238 B
TypeScript
Raw Normal View History

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