diff options
Diffstat (limited to 'pyvyos/__init__.py')
| -rw-r--r-- | pyvyos/__init__.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/pyvyos/__init__.py b/pyvyos/__init__.py index 44bd563..b0f867f 100644 --- a/pyvyos/__init__.py +++ b/pyvyos/__init__.py @@ -1,2 +1,10 @@ -from .device import VyDevice -from .device import ApiResponse +""" +PyVyOS - Python SDK for VyOS REST API + +Public API exports maintain backward compatibility. +Internal structure has been refactored to pyvyos.core for better organization. +""" +from .core.device import VyDevice +from .core.rest_client import ApiResponse + +__all__ = ["VyDevice", "ApiResponse"] |
