Initial commit
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 46s

This commit is contained in:
SeaswimmerTheFsh 2023-12-14 18:35:25 -05:00
parent 9d28e3f653
commit db2f6bdded
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE
9 changed files with 3347 additions and 0 deletions

5
moderation/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from .moderation import Moderation
async def setup(bot):
await bot.add_cog(Moderation(bot))

11
moderation/info.json Normal file
View file

@ -0,0 +1,11 @@
{
"author" : ["SeaswimmerTheFsh"],
"install_msg" : "Thank you for installing Moderation!\nYou can find the source code of this cog [here](https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs).\nThis cog currently requires a MySQL database to function, instructions on how to set this up can be found [here]()",
"name" : "Moderation",
"short" : "Implements a variety of moderation commands",
"description" : "Implements a variety of moderation commands, including a warning system, a mute system, and a ban system.",
"end_user_data_statement" : "This cog does not store any End User Data.",
"requirements": ["mysql-connector-python", "humanize", "pytimeparse2"],
"hidden": false,
"disabled": false
}

1359
moderation/moderation.py Normal file

File diff suppressed because it is too large Load diff