用户管理
This commit is contained in:
17
extend/think-module/src/ThinkModuleService.php
Normal file
17
extend/think-module/src/ThinkModuleService.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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,
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user