6 lines
136 B
Python
6 lines
136 B
Python
"""Discord message tool. Phase 2 implementation."""
|
|
|
|
|
|
def discord_reply(message: str) -> dict:
|
|
raise NotImplementedError("Phase 2")
|