用户管理

This commit is contained in:
wuyanwen
2019-12-07 17:31:38 +08:00
parent fa4837487b
commit 330a19e8c3
35 changed files with 1181 additions and 214 deletions

View 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,
]);
}
}