1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-02-07 17:58:24 +00:00
thatmattlove-hyperglass/hyperglass/plugins/_builtin/__init__.py
2025-10-22 12:38:08 +02:00

19 lines
580 B
Python

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