2022-09-17 18:27:08 +00:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { ServerModule } from '@/server/ServerModule.js';
|
|
|
|
import { GlobalModule } from '@/GlobalModule.js';
|
2023-01-21 05:09:01 +00:00
|
|
|
import { DaemonModule } from '@/daemons/DaemonModule.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Module({
|
|
|
|
imports: [
|
|
|
|
GlobalModule,
|
|
|
|
ServerModule,
|
2023-01-21 05:09:01 +00:00
|
|
|
DaemonModule,
|
2022-09-17 18:27:08 +00:00
|
|
|
],
|
|
|
|
})
|
2023-01-21 05:09:01 +00:00
|
|
|
export class MainModule {}
|