catchAdmin/extend/think-module/src/ThinkModuleService.php
2019-12-07 17:31:38 +08:00

18 lines
396 B
PHP

<?php
namespace jaguarjack\think\module;
use jaguarjack\think\module\command\CreateModuleCommand;
use jaguarjack\think\module\command\DiscoverModuleServiceCommand;
use think\Service;
class ThinkModuleService extends Service
{
public function boot()
{
$this->commands([
CreateModuleCommand::class,
DiscoverModuleServiceCommand::class,
]);
}
}