mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2026-05-01 14:50:11 -04:00
2a38777379
* enhance(downloader): run init in task * chore(changelog): add towncrier entry * fix: address review
8 lines
133 B
Python
8 lines
133 B
Python
from .downloader import Downloader
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Downloader(bot)
|
|
bot.add_cog(cog)
|
|
cog.create_init_task()
|