12 lines
277 B
PHP
Executable File
12 lines
277 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
use Symfony\Component\Console\Application;
|
|
use Aerex\BaikalStorage\Commands\CreateConfigFileCommand;
|
|
|
|
$application = new Application();
|
|
|
|
$application->add(new CreateConfigFileCommand());
|
|
$application->run();
|