1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2022-12-26 11:05:46 -05:00

15 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",
)