diff --git a/src/infrahub_client/__init__.py b/src/infrahub_client/__init__.py new file mode 100644 index 0000000..6c7f338 --- /dev/null +++ b/src/infrahub_client/__init__.py @@ -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", +]