php-llm-agent/lib/index.php
Frederico @ VilaRosa02 2e01e34278 init
2025-09-09 10:06:07 +00:00

7 lines
182 B
PHP

<?php
foreach(scandir(__DIR__) as $filename) {
if ($filename == "." || $filename == "..") continue;
if (substr($filename, -13) == ".function.php") include __DIR__."/$filename";
}