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

Closed
Damien wants to merge 6 commits from feature/42-infrahub-client into main
Showing only changes of commit ae29117827 - Show all commits

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",
]