mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use think\UlthonAdminService;
|
|
|
|
$service = [
|
|
// !注意,必须要注册该服务
|
|
10 => UlthonAdminService::class,
|
|
];
|
|
|
|
return $service;
|