add bot crafting command

This commit is contained in:
crazywhalecc
2022-08-21 16:04:20 +08:00
parent 4ba74e9f3e
commit ebdada57a6
3 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace ZM\Command\BotCraft;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* TODO: 用于从命令行创建插件
*/
class BotCraftCommand extends Command
{
protected static $defaultName = 'bc:make';
public function execute(InputInterface $input, OutputInterface $output)
{
return 0;
}
}