show current version

This commit is contained in:
Saeed Vaziry
2024-03-31 23:29:22 +02:00
parent cca4ab7ae3
commit c0f903d4ca
12 changed files with 67 additions and 30 deletions

View File

@ -1,7 +1,9 @@
<?php
// git hook
use App\Http\Controllers\GitHookController;
use App\Http\Controllers\API\GitHookController;
use App\Http\Controllers\API\HealthController;
use Illuminate\Support\Facades\Route;
Route::any('git-hooks', GitHookController::class)->name('git-hooks');
Route::get('health', HealthController::class)->name('api.health');
Route::any('git-hooks', GitHookController::class)->name('api.git-hooks');