1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
""" 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