add health check endpoint

This commit is contained in:
msukkari 2025-02-21 09:54:17 -08:00
parent 5076ee7f05
commit a79c162d9c

View file

@ -0,0 +1,6 @@
'use server';
export const GET = async () => {
return Response.json({ status: 'ok' });
}