import { Module } from "@nestjs/common"; import { KillswitchService } from "./killswitch.service"; import { CleanupService } from "./cleanup.service"; import { SpawnerModule } from "../spawner/spawner.module"; import { GitModule } from "../git/git.module"; import { ValkeyModule } from "../valkey/valkey.module"; @Module({ imports: [SpawnerModule, GitModule, ValkeyModule], providers: [KillswitchService, CleanupService], exports: [KillswitchService, CleanupService], }) export class KillswitchModule {}