baikal-storage-plugin/bin/baikalstorage

13 lines
326 B
Plaintext
Raw Permalink Normal View History

#!/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());
2021-07-02 19:38:34 -05:00
$application->setName('Baikal Storage Plugin');
2021-07-05 15:39:45 -05:00
$application->run();