7 lines
110 B
Python
7 lines
110 B
Python
from enum import Enum
|
|
|
|
|
|
class AuthMethod(str, Enum):
|
|
NONE = ""
|
|
HTTP_BASIC = "basic"
|
|
NTLM = "ntlm"
|