Partially done
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 16s

This commit is contained in:
2025-01-26 22:22:12 +01:00
parent 18c78e37a4
commit 2201430f59
8 changed files with 215 additions and 21 deletions

View File

@ -53,4 +53,9 @@ $router->group('/refuel', ['RequireAuth'], function ($router) {
$router->add('/create', 'RefuelController@create');
});
// API
$router->group('/api/v1', ['RequireAuth'], function ($router) {
$router->add('/vehicles/get', 'VehicleController@api_get');
});
$router->dispatch();