Created
October 4, 2015 22:15
-
-
Save gbin/6f4507cd7128406619e8 to your computer and use it in GitHub Desktop.
Errbot recipes: Online help
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from errbot import BotPlugin, botcmd | |
class AsciiArt(BotPlugin): | |
""" Ascii Art related commands. """ | |
@botcmd | |
def big(self, mess, args): | |
""" Generates a big version of what you want to say.""" | |
return args.upper() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment