initialize Project
This commit is contained in:
11
backend/app/src/Bootstrap/routes.php
Normal file
11
backend/app/src/Bootstrap/routes.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use Slim\App;
|
||||
|
||||
return function (App $app) {
|
||||
// Web routes
|
||||
(require __DIR__ . '/../Routes/web.php')($app);
|
||||
|
||||
// API routes
|
||||
(require __DIR__ . '/../Routes/v1/proxy.php')($app);
|
||||
};
|
||||
Reference in New Issue
Block a user