refactor: Renamed the cli file

This commit is contained in:
Aerex
2021-07-05 15:39:45 -05:00
parent 31f781af0d
commit 6a11a9dcce

12
bin/baikalstorage Executable file
View File

@@ -0,0 +1,12 @@
#!/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->setName('Baikal Storage Plugin');
$application->run();