uptime-kuma-api/uptime_kuma_api/auth_method.py
2022-07-07 22:17:47 +02:00

7 lines
110 B
Python

from enum import Enum
class AuthMethod(str, Enum):
NONE = ""
HTTP_BASIC = "basic"
NTLM = "ntlm"