rewrite: Sysadmin module.

This commit is contained in:
2022-11-18 08:49:21 +02:00
parent 860660d152
commit 09e7a36c9f
11 changed files with 1659 additions and 276 deletions

View File

@@ -0,0 +1,15 @@
from .exec_cog import Exec
from .blacklists import Blacklists
from .guild_log import GuildLog
from .presence import PresenceCtrl
from .dash import LeoSettings
async def setup(bot):
await bot.add_cog(LeoSettings(bot))
await bot.add_cog(Blacklists(bot))
await bot.add_cog(Exec(bot))
await bot.add_cog(GuildLog(bot))
await bot.add_cog(PresenceCtrl(bot))