Consolecrud.php 320 B

1234567891011121314151617
  1. <?php
  2. namespace modules\consolecrud;
  3. use think\facade\Console;
  4. class Consolecrud
  5. {
  6. public function AppInit()
  7. {
  8. if (request()->isCli()) {
  9. Console::starting(function (\think\Console $console) {
  10. $console->addCommand('app\admin\command\Crud');
  11. });
  12. }
  13. }
  14. }