Implement auto-refresh of the main status message every few minutes, without user interaction.
- Use
asyncio.create_task() and a background loop with asyncio.sleep()
- Suggested interval: every 3–5 minutes
- Optional: make it configurable via
config.py
This feature will allow the bot to proactively update system status for admins.
Implement auto-refresh of the main status message every few minutes, without user interaction.
asyncio.create_task()and a background loop withasyncio.sleep()config.pyThis feature will allow the bot to proactively update system status for admins.