Files
openclaw-mission-control/backend/app/core/auth_mode.py

13 lines
232 B
Python

"""Shared auth-mode enum values."""
from __future__ import annotations
from enum import Enum
class AuthMode(str, Enum):
"""Supported authentication modes for backend and frontend."""
CLERK = "clerk"
LOCAL = "local"