Files
oficial/app/resources/routes/api/external.php
Juan Pablo Vial abe37227ce API/external
2025-05-12 15:47:51 -04:00

11 lines
285 B
PHP

<?php
$app->group('/external', function($app) {
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'external']));
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
});