1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-10 03:43:48 +09:00
cherrypick/packages/backend/src/MainModule.ts
2023-08-01 17:16:39 +09:00

19 lines
438 B
TypeScript

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