Files
zyt/server/app/AppService.php
T
2026-05-11 17:49:38 +08:00

24 lines
361 B
PHP
Executable File

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