Skip to content
Snippets Groups Projects

auto_update - Add auto_update cog

Merged Callum Smith requested to merge auto_update into master
Files
4
+ 14
0
"""
auto_update cog allows discord bot automatically update cogs
when receiving either webhookmessages or on polling intervals
"""
from redbot.core.bot import Red
from .auto_update import AutoUpdate
async def setup(bot: Red):
"""
Setup the auto_update cog
"""
await bot.add_cog(AutoUpdate(bot))