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']); });