uptime-kuma-api/uptime_kuma_api/auth_method.py

8 lines
110 B
Python
Raw Normal View History

2022-07-02 16:00:54 +02:00
from enum import Enum
class AuthMethod(str, Enum):
NONE = ""
HTTP_BASIC = "basic"
NTLM = "ntlm"