add log for health check

This commit is contained in:
msukkari 2025-02-21 10:44:11 -08:00
parent 70e309b310
commit fa0bb82921

View file

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