From c01386ee3a3f3c82c4ee65857005b0b92c532f04 Mon Sep 17 00:00:00 2001 From: Damien Arnodo Date: Wed, 1 Apr 2026 09:51:17 +0000 Subject: [PATCH] feat(gnmi): add package __init__.py --- src/gnmi_eos/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/gnmi_eos/__init__.py diff --git a/src/gnmi_eos/__init__.py b/src/gnmi_eos/__init__.py new file mode 100644 index 0000000..76d7724 --- /dev/null +++ b/src/gnmi_eos/__init__.py @@ -0,0 +1,17 @@ +""" +gnmi-eos: gNMI client and CLI for Arista EOS devices. +""" + +from gnmi_eos.client import ( + GNMIClient, + GNMIConnectionError, + GNMIError, + GNMIPathError, +) + +__all__ = [ + "GNMIClient", + "GNMIError", + "GNMIConnectionError", + "GNMIPathError", +]