Source code for mads.raw

# mads/raw.py
#
#

""" raw output using print. """

from mads.bots import Bot

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