1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/hyperglass/plugins/__init__.py
2021-09-11 00:47:01 -07:00

12 lines
231 B
Python

"""hyperglass Plugins."""
# Local
from .main import init_plugins
from ._output import OutputPlugin
from ._register import register_output_plugin
__all__ = (
"OutputPlugin",
"register_output_plugin",
"init_plugins",
)