Files
oficial/resources/routes/api.php

9 lines
165 B
PHP
Raw Normal View History

2021-03-25 23:33:37 -03:00
<?php
$files = new DirectoryIterator(__DIR__ . '/api');
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}