mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
19 lines
451 B
Python
19 lines
451 B
Python
"""hyperglass Plugins."""
|
|
|
|
# Local
|
|
from .main import register_plugin, init_builtin_plugins
|
|
from ._input import InputPlugin, InputPluginReturn
|
|
from ._output import OutputType, OutputPlugin
|
|
from ._manager import InputPluginManager, OutputPluginManager
|
|
|
|
__all__ = (
|
|
"init_builtin_plugins",
|
|
"InputPlugin",
|
|
"InputPluginManager",
|
|
"InputPluginReturn",
|
|
"OutputPlugin",
|
|
"OutputPluginManager",
|
|
"OutputType",
|
|
"register_plugin",
|
|
)
|