fulvia/modules/echo.py

13 lines
241 B
Python
Raw Normal View History

2018-03-16 03:13:43 -04:00
#!/usr/bin/env python3
"""
Echo.
"""
from module import commands, example
@commands('echo')
@example('.echo balloons')
def echo(bot, trigger):
"""Echos the given string."""
2020-01-07 18:58:19 -05:00
if len(trigger.args) >= 2:
bot.msg(' '.join(trigger.args[1:]))