🎉 first commit
This commit is contained in:
8
app/routes/api.health/route.tsx
Normal file
8
app/routes/api.health/route.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { json, type LoaderFunctionArgs } from '@remix-run/node';
|
||||
|
||||
export const loader = async ({ request: _request }: LoaderFunctionArgs) => {
|
||||
return json({
|
||||
status: 'healthy',
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user