Files
crypto/frontend/resources/routes/web.php
2021-06-28 23:15:13 -04:00

13 lines
253 B
PHP

<?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);