API de restaurante

This commit is contained in:
2021-05-02 19:15:35 -04:00
parent b20d95cb81
commit 1632a2e51f
6 changed files with 313 additions and 13 deletions

View File

@@ -36,4 +36,5 @@ $router->get('/', function () use ($router) {
$router->group(['prefix' => 'api/v1', 'middleware' => ['auth', 'log_endpoint']], function () use ($router) {
registerUserApi($router);
registerRestaurantApi($router);
});