Source code for botlib.raw

# mad/raw.py
#
#

""" raw output using print. """

from .bot import Bot

[docs]class RAW(Bot):
[docs] def say(self, channel, txt): print(txt)