Skip to content

Commit af5e0bc

Browse files
committed
[feat]: implement cog-based cmds in bot
1 parent 7460279 commit af5e0bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

backend/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from app.core.orchestration.queue_manager import AsyncQueueManager
88
from app.core.orchestration.agent_coordinator import AgentCoordinator
99
from bots.discord.discord_bot import DiscordBot
10+
from bots.discord.discord_cogs import DevRelCommands
1011
from app.db.weaviate.weaviate_client import get_client
1112

1213
# Configure logging
@@ -29,6 +30,7 @@ def __init__(self):
2930
self.queue_manager = AsyncQueueManager()
3031
self.agent_coordinator = AgentCoordinator(self.queue_manager)
3132
self.discord_bot = DiscordBot(self.queue_manager)
33+
self.discord_bot.add_cog(DevRelCommands(self.discord_bot, self.queue_manager))
3234
self.running = False
3335

3436
async def start(self):

0 commit comments

Comments
 (0)