uptime-kuma-api/uptimekumaapi/auth_method.py
2022-07-02 16:00:54 +02:00

7 lines
110 B
Python

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