Files
oficial/resources/routes/api.php
2021-03-25 23:33:37 -03:00

9 lines
165 B
PHP

<?php
$files = new DirectoryIterator(__DIR__ . '/api');
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}