22 lines
327 B
Python
22 lines
327 B
Python
# coding=utf8
|
|
"""sopel-SpiceBotSERV
|
|
|
|
A Wrapper around Sopel
|
|
"""
|
|
from __future__ import unicode_literals, absolute_import, division, print_function
|
|
|
|
from sopel import module
|
|
|
|
|
|
def configure(config):
|
|
pass
|
|
|
|
|
|
def setup(bot):
|
|
pass
|
|
|
|
|
|
@module.commands('helloworld')
|
|
def hello_world(bot, trigger):
|
|
bot.say('Hello, world!')
|