mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 13:21:37 +08:00
11 lines
211 B
PHP
11 lines
211 B
PHP
<?php
|
|
|
|
use App\Listeners\Pay;
|
|
use App\Listeners\Profiler;
|
|
use App\Listeners\UserDailyCounter;
|
|
|
|
return [
|
|
'db' => Profiler::class,
|
|
'pay' => Pay::class,
|
|
'userDailyCounter' => UserDailyCounter::class,
|
|
]; |