1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2021-09-13 02:37:05 -07:00

19 lines
435 B
Python

"""hyperglass Plugins."""
# Local
from .main import init_plugins, register_plugin
from ._input import InputPlugin, InputPluginReturn
from ._output import OutputType, OutputPlugin
from ._manager import InputPluginManager, OutputPluginManager
__all__ = (
"init_plugins",
"InputPlugin",
"InputPluginManager",
"InputPluginReturn",
"OutputPlugin",
"OutputPluginManager",
"OutputType",
"register_plugin",
)