14 lines
280 B
Python
14 lines
280 B
Python
|
|
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_Prerun import prerun
|
|
|
|
|
|
@prerun()
|
|
@plugin.command('echo')
|
|
def echo(bot, trigger, comrun):
|
|
comrun.say(comrun.command["trigger_str"])
|
|
comrun.say(comrun.command["trigger_str"])
|
|
comrun.say(comrun.command["trigger_str"])
|