1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-10 11:53:11 +09:00
cherrypick/packages/backend/src/MainModule.ts

19 lines
438 B
TypeScript
Raw Normal View History

/*
2023-08-01 17:16:39 +09:00
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2022-09-18 03:27:08 +09: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-18 03:27:08 +09:00
@Module({
imports: [
GlobalModule,
ServerModule,
DaemonModule,
2022-09-18 03:27:08 +09:00
],
})
export class MainModule {}