prepare pypi release and fix add monitor

This commit is contained in:
lucasheld 2022-07-07 22:17:47 +02:00
parent b87a1bdaf0
commit 140784c4e0
13 changed files with 96 additions and 52 deletions

View file

@ -0,0 +1,9 @@
from enum import Enum
class ProxyProtocol(str, Enum):
HTTPS = "https"
HTTP = "http"
SOCKS = "socks"
SOCKS5 = "socks5"
SOCKS4 = "socks4"