feat: Initial commit

This commit is contained in:
Aerex
2020-05-03 16:41:59 -05:00
parent b3175cb4b8
commit 1281ebff03
15 changed files with 652 additions and 5 deletions

12
lib/AbstractConsole.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace Aerex\BaikalStorage;
abstract class AbstractConsole {
function __construct($defaultArgs) {
$this->defaultArgs = $defaultArgs;
}
abstract protected function execute($cmd, $args, $input = null);
}