mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-23 09:45:33 +00:00
7 lines
95 B
TypeScript
7 lines
95 B
TypeScript
|
|
'use server';
|
||
|
|
|
||
|
|
export const GET = async () => {
|
||
|
|
return Response.json({ status: 'ok' });
|
||
|
|
}
|
||
|
|
|