17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
import { Module } from '@nestjs/common'
|
|
import { ConfigModule } from '@nestjs/config'
|
|
|
|
import { RmqModule } from './infra/rmq/rmq.module'
|
|
import { NotificationsModule } from './modules/notifications/notifications.module'
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true
|
|
}),
|
|
RmqModule,
|
|
NotificationsModule
|
|
]
|
|
})
|
|
export class AppModule {}
|