2021-09-11 00:47:01 -07:00
|
|
|
"""hyperglass Plugins."""
|
|
|
|
|
|
|
|
# Local
|
2021-09-13 14:10:50 -07:00
|
|
|
from .main import register_plugin, init_builtin_plugins
|
2021-09-13 02:37:05 -07:00
|
|
|
from ._input import InputPlugin, InputPluginReturn
|
|
|
|
from ._output import OutputType, OutputPlugin
|
2021-09-11 11:17:38 -07:00
|
|
|
from ._manager import InputPluginManager, OutputPluginManager
|
2021-09-11 00:47:01 -07:00
|
|
|
|
|
|
|
__all__ = (
|
2021-09-13 14:10:50 -07:00
|
|
|
"init_builtin_plugins",
|
2021-09-11 11:17:38 -07:00
|
|
|
"InputPlugin",
|
|
|
|
"InputPluginManager",
|
2021-09-13 02:37:05 -07:00
|
|
|
"InputPluginReturn",
|
2021-09-11 11:17:38 -07:00
|
|
|
"OutputPlugin",
|
|
|
|
"OutputPluginManager",
|
2021-09-13 02:37:05 -07:00
|
|
|
"OutputType",
|
2021-09-11 17:55:27 -07:00
|
|
|
"register_plugin",
|
2021-09-11 00:47:01 -07:00
|
|
|
)
|