10 lines
173 B
Python
10 lines
173 B
Python
from __future__ import annotations
|
|
import enum
|
|
|
|
|
|
class Proxy:
|
|
class Type(enum.Enum):
|
|
DIRECT = enum.auto()
|
|
HTTP = enum.auto()
|
|
SOCKS = enum.auto()
|