From 4ec9aab5b617291e66b4115d151b423d1f187e06 Mon Sep 17 00:00:00 2001 From: Leon Morival Date: Wed, 20 May 2026 09:25:56 +0200 Subject: [PATCH] feat: health --- routes/api.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/api.php b/routes/api.php index ac0cee8..589ec04 100644 --- a/routes/api.php +++ b/routes/api.php @@ -19,6 +19,8 @@ Route::prefix('auth')->group(function (): void { }); }); + +// Health Route::get('/health', function () { return response()->json(['status' => 'ok']); });