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/_builtin/__init__.py

14 lines
371 B
Python

"""Built-in hyperglass plugins."""
# Local
from .remove_command import RemoveCommand
from .bgp_route_arista import BGPRoutePluginArista
from .bgp_route_juniper import BGPRoutePluginJuniper
from .mikrotik_garbage_output import MikrotikGarbageOutput
__all__ = (
"BGPRoutePluginArista",
"BGPRoutePluginJuniper",
"MikrotikGarbageOutput",
"RemoveCommand",
)