forked from blizzthewolf/SeaCogs
misc(aurora): added author and version variables to the class
This commit is contained in:
parent
fadd609a72
commit
600962fd46
1 changed files with 6 additions and 2 deletions
|
@ -29,8 +29,12 @@ from .utilities.utils import check_moddable, check_permissions, fetch_channel_di
|
||||||
|
|
||||||
|
|
||||||
class Aurora(commands.Cog):
|
class Aurora(commands.Cog):
|
||||||
"""Custom moderation cog.
|
"""Aurora is a fully-featured moderation system.
|
||||||
Developed by SeaswimmerTheFsh."""
|
It is heavily inspired by GalacticBot, and is designed to be a more user-friendly alternative to Red's core Mod cogs.
|
||||||
|
This cog stores all of its data in an SQLite database."""
|
||||||
|
|
||||||
|
__author__ = "SeaswimmerTheFsh"
|
||||||
|
__version__ = "2.0.0"
|
||||||
|
|
||||||
async def red_delete_data_for_user(self, *, requester, user_id: int):
|
async def red_delete_data_for_user(self, *, requester, user_id: int):
|
||||||
if requester == "discord_deleted_user":
|
if requester == "discord_deleted_user":
|
||||||
|
|
Loading…
Reference in a new issue