mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
18 lines
435 B
Python
18 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",
|
|
)
|