11 lines
176 B
PHP
11 lines
176 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
define('BASE_PATH', __DIR__);
|
|
|
|
require_once BASE_PATH . '/vendor/autoload.php';
|
|
|
|
$app = new \Bicycle\Core\Application(BASE_PATH);
|
|
$app->run();
|