Files
stack/apps/gateway/src/chat/chat.module.ts
Jason Woltje a4bb563779
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
feat(gateway): CommandRegistryService + CommandExecutorService (P8-010) (#178)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-03-16 02:10:31 +00:00

12 lines
341 B
TypeScript

import { Module } from '@nestjs/common';
import { CommandsModule } from '../commands/commands.module.js';
import { ChatGateway } from './chat.gateway.js';
import { ChatController } from './chat.controller.js';
@Module({
imports: [CommandsModule],
controllers: [ChatController],
providers: [ChatGateway],
})
export class ChatModule {}