uuid/public/index.php
2025-06-27 23:44:10 +02:00

14 lines
231 B
PHP

<?php
declare(strict_types=1);
use App\App;
require_once __DIR__ . '/../vendor/autoload.php';
$base = getenv('BASE_URL');
if (!is_string($base) || $base === '') {
$base = 'https://uuid.php.fail/';
}
new App($base)->run();