feat(gateway): CommandRegistryService + CommandExecutorService (P8-010) (#178)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #178.
This commit is contained in:
2026-03-16 02:10:31 +00:00
committed by jason.woltje
parent 7f6464bbda
commit a4bb563779
8 changed files with 460 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { CommandRegistryService } from './command-registry.service.js';
import { CommandExecutorService } from './command-executor.service.js';
@Module({
providers: [CommandRegistryService, CommandExecutorService],
exports: [CommandRegistryService, CommandExecutorService],
})
export class CommandsModule {}