14 lines
235 B
Python
14 lines
235 B
Python
|
|
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_1 import sb
|
|
|
|
from sopel_SpiceBot_Core_Prerun import sbprerun
|
|
|
|
|
|
@sbprerun()
|
|
@plugin.action_command('test')
|
|
def sb_test_commands(bot, trigger, comrun):
|
|
bot.say("%s" % trigger.raw)
|