mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
[Core] Data Deletion And Disclosure APIs - Adds a Data Deletion API - Deletion comes in a few forms based on who is requesting - Deletion must be handled by 3rd party - Adds a Data Collection Disclosure Command - Provides a dynamically generated statement from 3rd party extensions - Modifies the always available commands to be cog compatible - Also prevents them from being unloaded accidentally
9 lines
148 B
Python
9 lines
148 B
Python
from .alias import Alias
|
|
from redbot.core.bot import Red
|
|
|
|
|
|
async def setup(bot: Red):
|
|
cog = Alias(bot)
|
|
bot.add_cog(cog)
|
|
cog.sync_init()
|