Files
datahub/backend/config/autoload/dependencies.php
T

16 lines
406 B
PHP
Raw Normal View History

2025-11-05 16:34:40 +08:00
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
return [
2025-11-27 13:40:58 +08:00
// 可以在这里配置接口到实现的绑定
2026-05-07 20:51:38 +08:00
App\Service\AggregateRefresherInterface::class => App\Service\ContinuousAggregateRefresher::class,
2025-11-05 16:34:40 +08:00
];