misskey/packages/backend/src/MainModule.ts

19 lines
426 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2022-09-17 18:27:08 +00:00
import { Module } from '@nestjs/common';
import { ServerModule } from '@/server/ServerModule.js';
import { GlobalModule } from '@/GlobalModule.js';
import { DaemonModule } from '@/daemons/DaemonModule.js';
2022-09-17 18:27:08 +00:00
@Module({
imports: [
GlobalModule,
ServerModule,
DaemonModule,
2022-09-17 18:27:08 +00:00
],
})
export class MainModule {}