10 lines
321 B
Python
10 lines
321 B
Python
|
|
"""Discord bot integration. Phase 2 implementation."""
|
||
|
|
|
||
|
|
|
||
|
|
class DiscordClient:
|
||
|
|
async def send_message(self, channel_id: str, content: str) -> dict:
|
||
|
|
raise NotImplementedError("Phase 2")
|
||
|
|
|
||
|
|
async def send_thread_reply(self, channel_id, thread_id, content) -> dict:
|
||
|
|
raise NotImplementedError("Phase 2")
|