feat: health

This commit is contained in:
2026-05-20 09:25:56 +02:00
parent 2887260830
commit 4ec9aab5b6
+2
View File
@@ -19,6 +19,8 @@ Route::prefix('auth')->group(function (): void {
}); });
}); });
// Health
Route::get('/health', function () { Route::get('/health', function () {
return response()->json(['status' => 'ok']); return response()->json(['status' => 'ok']);
}); });