feat(infrahub): add Infrahub client for fabric intent (#42)
This commit is contained in:
28
src/infrahub_client/__init__.py
Normal file
28
src/infrahub_client/__init__.py
Normal 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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user