Fox-V3/chatter/__init__.py
2018-05-03 12:24:16 -04:00

10 lines
130 B
Python

from .chat import Chatter
from . import chatterbot
def setup(bot):
bot.add_cog(Chatter(bot))
__all__ = (
'chatterbot'
)