9 lines
129 B
PHP
9 lines
129 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
$app = new \App\Core\App(__DIR__);
|
|
$app->run();
|