14 lines
231 B
PHP
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();
|