Spaces:
Starting
Starting
| import { Module } from "@nestjs/common"; | |
| import { DbModule } from "./db/db.module.js"; | |
| import { AuthModule } from "./auth/auth.module.js"; | |
| import { MissionsModule } from "./missions/missions.module.js"; | |
| import { InngestModule } from "./workflow/inngest.module.js"; | |
| import { ConversationsModule } from "./conversations/conversations.module.js"; | |
| import { WebhooksModule } from "./webhooks/webhooks.module.js"; | |
| import { EvidenceModule } from "./evidence/evidence.module.js"; | |
| import { RoutePlansModule } from "./route-plans/route-plans.module.js"; | |
| import { ActionsModule } from "./actions/actions.module.js"; | |
| import { RepliesModule } from "./missions/replies.module.js"; | |
| import { ResolutionModule } from "./resolution/resolution.module.js"; | |
| import { LedgerModule } from "./ledger/ledger.module.js"; | |
| import { DpdpModule } from "./dpdp/dpdp.module.js"; | |
| import { SwarmModule } from "./swarm/swarm.module.js"; | |
| import { PortalAssistModule } from "./portal-assist/portal-assist.module.js"; | |
| import { ResolverModule } from "./resolver/resolver.module.js"; | |
| import { CaseLookupModule } from "./case-lookup/case-lookup.module.js"; | |
| import { ComplianceModule } from "./compliance/compliance.module.js"; | |
| import { UsersModule } from "./users/users.module.js"; | |
| ({ | |
| imports: [ | |
| DbModule, | |
| AuthModule, | |
| InngestModule, | |
| MissionsModule, | |
| ConversationsModule, | |
| WebhooksModule, | |
| EvidenceModule, | |
| RoutePlansModule, | |
| ActionsModule, | |
| RepliesModule, | |
| ResolutionModule, | |
| LedgerModule, | |
| DpdpModule, | |
| SwarmModule, | |
| PortalAssistModule, | |
| ResolverModule, | |
| CaseLookupModule, | |
| ComplianceModule, | |
| UsersModule, | |
| ], | |
| controllers: [], | |
| }) | |
| export class AppModule {} | |