mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
18 lines
471 B
Python
18 lines
471 B
Python
"""hyperglass Plugins."""
|
|
|
|
# Local
|
|
from .main import register_plugin, init_builtin_plugins
|
|
from ._input import InputPlugin, InputPluginValidationReturn
|
|
from ._output import OutputType, OutputPlugin
|
|
from ._manager import InputPluginManager, OutputPluginManager
|
|
|
|
__all__ = (
|
|
"init_builtin_plugins",
|
|
"InputPlugin",
|
|
"InputPluginManager",
|
|
"InputPluginValidationReturn",
|
|
"OutputPlugin",
|
|
"OutputPluginManager",
|
|
"OutputType",
|
|
"register_plugin",
|
|
)
|