import { Module } from "@nestjs/common"; import { DatabaseModule } from "../database/database.module.js"; import { ScannerModule } from "../scanner/scanner.module.js"; import { AutomationService } from "./automation.service.js"; @Module({ imports: [DatabaseModule, ScannerModule], providers: [AutomationService], exports: [AutomationService] }) export class AutomationModule {}