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