092_UI_core / src /modules /agent /agent.module.ts
anotherath's picture
feat: add agent mention bot (@studybot ) for room and DM messaging
ffda0ec
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { AgentService } from './agent.service';
@Module({
imports: [ConfigModule],
providers: [AgentService],
exports: [AgentService],
})
export class AgentModule {}