16 lines
694 B
TypeScript
16 lines
694 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { AgentsController } from "./agents.controller";
|
|
import { QueueModule } from "../../queue/queue.module";
|
|
import { SpawnerModule } from "../../spawner/spawner.module";
|
|
import { KillswitchModule } from "../../killswitch/killswitch.module";
|
|
import { ValkeyModule } from "../../valkey/valkey.module";
|
|
import { OrchestratorApiKeyGuard } from "../../common/guards/api-key.guard";
|
|
import { AgentEventsService } from "./agent-events.service";
|
|
|
|
@Module({
|
|
imports: [QueueModule, SpawnerModule, KillswitchModule, ValkeyModule],
|
|
controllers: [AgentsController],
|
|
providers: [OrchestratorApiKeyGuard, AgentEventsService],
|
|
})
|
|
export class AgentsModule {}
|