blob: 39a9beef142ede5c44479c1ea06fc83cb7582061 (
plain) (
tree)
|
|
"""
Sourcehut: Supybot plugin to receive Sourcehut webhooks
"""
import sys
import supybot
__version__ = "0.1"
__author__ = supybot.authors.unknown
__contributors__ = {}
__url__ = ''
from . import config
from . import plugin
from importlib import reload
reload(config)
reload(plugin)
Class = plugin.Class
configure = config.configure
|