v0.1.0
This commit is contained in:
12
frontend/resources/routes/web.php
Normal file
12
frontend/resources/routes/web.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
use ProVM\Crypto\Common\Controller\Home;
|
||||
|
||||
$files = new DirectoryIterator(__DIR__ . DIRECTORY_SEPARATOR . 'web');
|
||||
foreach ($files as $file) {
|
||||
if ($file->isDir()) {
|
||||
continue;
|
||||
}
|
||||
include $file->getRealPath();
|
||||
}
|
||||
|
||||
$app->get('/', Home::class);
|
Reference in New Issue
Block a user