11 lines
113 B
Python
11 lines
113 B
Python
from .chat import Chatter
|
|
|
|
|
|
def setup(bot):
|
|
bot.add_cog(Chatter(bot))
|
|
|
|
|
|
# __all__ = (
|
|
# 'chatterbot'
|
|
# )
|