Files
VPNTray/services/__init__.py
2025-09-07 23:33:55 +02:00

9 lines
198 B
Python

"""Services package for VPN and password management."""
from .vpn_manager import VPNManager, VPNConnectionError, VPNStatus
__all__ = [
'VPNManager',
'VPNConnectionError',
'VPNStatus'
]