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