import { Module } from '@nestjs/common'; import { CommandRegistryService } from './command-registry.service.js'; import { CommandExecutorService } from './command-executor.service.js'; import { GCModule } from '../gc/gc.module.js'; @Module({ imports: [GCModule], providers: [CommandRegistryService, CommandExecutorService], exports: [CommandRegistryService, CommandExecutorService], }) export class CommandsModule {}