feat:系统模块初始化

This commit is contained in:
JaguarJack
2023-05-15 13:23:32 +08:00
parent b8c4c90da7
commit 2a6d65d4e7
13 changed files with 812 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Modules\System\Providers;
use Catch\CatchAdmin;
use Catch\Providers\CatchModuleServiceProvider;
class SystemServiceProvider extends CatchModuleServiceProvider
{
/**
* route path
*
* @return string
*/
public function moduleName(): string
{
// TODO: Implement path() method.
return 'system';
}
}