1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-19 17:38:05 +00:00
thatmattlove-hyperglass/hyperglass/plugins/_builtin/__init__.py

12 lines
283 B
Python

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