12 lines
277 B
Plaintext
12 lines
277 B
Plaintext
|
#!/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();
|