blob: 236985076cb3a13c2f9284baf45c5cf8f44fe5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* 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 {}
|