mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* 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()
|