import { Module } from '@nestjs/common'; import { PrismaModule } from './prisma/prisma.module'; import { PlatformModule } from './platform/platform.module'; import { IdentityModule } from './identity/identity.module'; import { InteractionsModule } from './interactions/interactions.module'; import { OutboxModule } from './outbox/outbox.module'; import { ThreadsModule } from './threads/threads.module'; import { MessageModule } from './messaging/message.module'; import { HealthController } from './health.controller'; import { DevController } from './dev/dev.controller'; @Module({ imports: [PrismaModule, PlatformModule, IdentityModule, InteractionsModule, OutboxModule, ThreadsModule, MessageModule], controllers: [HealthController, DevController], }) export class AppModule {}