feat(gnmi): add package __init__.py
This commit is contained in:
17
src/gnmi_eos/__init__.py
Normal file
17
src/gnmi_eos/__init__.py
Normal file
@@ -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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user