Since we've created the following functionalities:
Telegram bot that responds to commands
Discord bot that gets members in voice channels on a given server
We now want to integrate the two.
Acceptance Criteria:
When a user makes a command to the Telegram bot, the bot returns the users who are in voice channels on the server
Notes:
Consider creating a new method in the Pycord bot class which the Telegram bot can call
Both the Telegram bot and the Pycord bot will have to run simultaneously. The bots are non-blocking, so the integration might have to be non-blocking as well
Might have to use Coroutines and Async operations to integrate
Since we've created the following functionalities:
We now want to integrate the two.
Acceptance Criteria:
Notes: