Files
aikaterna-cogs/seen/__init__.py
Draper fdecc629c5 [Seen] Improves DisK I/O for bots with larger server and member base (#53)
* Removes 3.0 compatibility
Improves Disk IO by writting to config every 60 seconds
Also listen to `on_typing`, `on_message_edit`, `on_reaction_remove`, `on_reaction_add`

* Change from `on_message` to `on_message_without_command`
2019-08-12 07:59:33 -07:00

8 lines
115 B
Python

from .seen import Seen
async def setup(bot):
cog = Seen(bot)
await cog.initialize()
bot.add_cog(cog)