12 lines
200 B
Python
12 lines
200 B
Python
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_Prerun import prerun
|
|
|
|
|
|
@prerun()
|
|
@plugin.command('(.*)')
|
|
def rule_command(bot, trigger, comrun):
|
|
bot.say("%s" % trigger.raw)
|
|
bot.say("now")
|