liiistem-miniapp/app/AppService.php

24 lines
264 B
PHP
Raw Normal View History

2025-09-18 10:36:08 +08:00
<?php
declare(strict_types=1);
namespace app;
use think\Service;
/**
* 应用服务类
*/
class AppService extends Service
{
public function register()
{
// 服务注册
}
public function boot()
{
// 服务启动
}
}