Brandon209-Red-bot-Cogs/activitylog/__init__.py
2023-05-04 15:33:23 -04:00

9 lines
334 B
Python

from .activitylog import ActivityLogger
__red_end_user_data_statement__ = "Depending on setup, can log user messages, voice channel activity, audit actions in guilds, activity statistics per guild, user name changes, and any moderation actions per guild."
async def setup(bot):
n = ActivityLogger(bot)
await bot.add_cog(n)