1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 00:38:06 +00:00
thatmattlove-hyperglass/hyperglass/plugins/_builtin/__init__.py
Jelson Stoelben Rodrigues f67c676a2d feat: add Huawei BGP Route Input Plugin
Create builtin plugin to transform input field before passing to Huawei device
2025-06-09 21:37:14 -04:00

18 lines
520 B
Python

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