Bicycle/bin/bicycle
Egor Isaev 8717326036 dev
2026-04-27 16:04:31 +03:00

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);