Skip to content

Commit f144d74

Browse files
committed
💚 Fix new healthz route syntax error
1 parent dfd6b15 commit f144d74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export default function GET() {
1+
export const GET = async () => {
22
return new Response(
33
JSON.stringify({ status: "ok", timestamp: new Date().toISOString() }),
44
{
55
headers: { "Content-Type": "application/json" },
66
},
77
);
8-
}
8+
};

0 commit comments

Comments
 (0)