Files
niucloud-saas/niucloud/app/AppService.php
wangchen147 72333f8528 0.0.5
2023-12-15 16:43:29 +08:00

23 lines
266 B
PHP

<?php
declare (strict_types = 1);
namespace app;
use think\Service;
/**
* 应用服务类
*/
class AppService extends Service
{
public function register()
{
// 服务注册
}
public function boot()
{
// 服务启动
}
}