mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-28 18:56:43 -06:00
c1514ce91d
Fix #13290
26 lines
577 B
TypeScript
26 lines
577 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Module } from '@nestjs/common';
|
|
import { CoreModule } from '@/core/CoreModule.js';
|
|
import { GlobalModule } from '@/GlobalModule.js';
|
|
import { QueueStatsService } from './QueueStatsService.js';
|
|
import { ServerStatsService } from './ServerStatsService.js';
|
|
|
|
@Module({
|
|
imports: [
|
|
GlobalModule,
|
|
CoreModule,
|
|
],
|
|
providers: [
|
|
QueueStatsService,
|
|
ServerStatsService,
|
|
],
|
|
exports: [
|
|
QueueStatsService,
|
|
ServerStatsService,
|
|
],
|
|
})
|
|
export class DaemonModule {}
|