Spaces:
Sleeping
Sleeping
File size: 276 Bytes
2415446 | 1 2 3 4 5 6 7 8 9 10 | """Shared proxy-auth policy for FCC client launchers."""
PROXY_NO_AUTH_SENTINEL = "fcc-no-auth"
def proxy_auth_token(auth_token: str) -> str:
"""Return the configured proxy token or the no-auth client marker."""
return auth_token.strip() or PROXY_NO_AUTH_SENTINEL
|