mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-27 06:50:34 +00:00
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
use app\AppService;
|
|
|
|
// 系统服务定义文件
|
|
// 服务在完成全局初始化之后执行
|
|
return [
|
|
AppService::class,
|
|
\app\service\ValidateService::class
|
|
];
|