Files
arthur_chen f69efb67ad Initial commit: abyssVpn project
- Tauri desktop app (apps/desktop)
- Python Django API service (services/api)
- Deployment scripts and docs
2026-05-15 09:06:10 +08:00

6 lines
180 B
Python

from .services.netmaker_client import NetmakerClient
def create_one_time_join_token(device_name: str) -> str:
return NetmakerClient().create_one_time_join_token(device_name)