10 lines
106 B
PHP
10 lines
106 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/src/bootstrap.php';
|
|
|
|
$app = new App();
|
|
$app->run();
|
|
|