12 lines
203 B
PHP
Executable File
12 lines
203 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
define('BASE_PATH', dirname(__DIR__));
|
|
|
|
require_once BASE_PATH . '/vendor/autoload.php';
|
|
|
|
$app = new \Bicycle\App(BASE_PATH);
|
|
$app->runConsole($argv);
|