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