mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-17 02:05:48 -07:00
12 lines
427 B
Python
12 lines
427 B
Python
# ======================================================
|
|
# Data\Engine\services\VPN\__init__.py
|
|
# Description: Namespace package for VPN service helpers (WireGuard server orchestration).
|
|
#
|
|
# API Endpoints (if applicable): None
|
|
# ======================================================
|
|
|
|
"""VPN service helpers for the Engine runtime."""
|
|
|
|
from .wireguard_server import WireGuardServerConfig, WireGuardServerManager # noqa: F401
|
|
|