aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/ircbot/Sourcehut/__init__.py
blob: 39a9beef142ede5c44479c1ea06fc83cb7582061 (plain) (blame)
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