11 lines
175 B
Python
11 lines
175 B
Python
|
|
from . import config
|
||
|
|
from . import plugin
|
||
|
|
from importlib import reload
|
||
|
|
|
||
|
|
reload(config)
|
||
|
|
reload(plugin)
|
||
|
|
|
||
|
|
Class = plugin.Class
|
||
|
|
configure = config.configure
|
||
|
|
__version__ = "0.1.0"
|