summaryrefslogtreecommitdiff
path: root/packages/backend/src/MainModule.ts
blob: fc568e883ee3324f459bd989ec32f2a3c02ac1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 {}