Initial commit, framework/frontend assets setup
This commit is contained in:
commit
9d9858bb37
32 changed files with 4651 additions and 0 deletions
8
config/routes.php
Normal file
8
config/routes.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
use App\Controllers\Api\SubnetController;
|
||||
use App\Controllers\HomeController;
|
||||
use Core\Router\Router;
|
||||
|
||||
Router::get('/', HomeController::class, 'index');
|
||||
Router::post('/api/subnet', SubnetController::class, 'data');
|
Loading…
Add table
Add a link
Reference in a new issue