feat(infrahub): add Infrahub client for fabric intent (#42)

This commit is contained in:
2026-02-26 12:42:52 +00:00
parent b2ed4199cd
commit ae29117827

View File

@@ -0,0 +1,28 @@
"""Infrahub client for Arista EVPN-VXLAN fabric intent.
Public API::
from infrahub_client import FabricInfrahubClient
from infrahub_client import (
InfrahubClientError,
InfrahubConnectionError,
InfrahubQueryError,
InfrahubNotFoundError,
)
"""
from .client import FabricInfrahubClient
from .exceptions import (
InfrahubClientError,
InfrahubConnectionError,
InfrahubNotFoundError,
InfrahubQueryError,
)
__all__ = [
"FabricInfrahubClient",
"InfrahubClientError",
"InfrahubConnectionError",
"InfrahubNotFoundError",
"InfrahubQueryError",
]