librespot-python/librespot/standard/Proxy.py

10 lines
173 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
from __future__ import annotations
import enum
class Proxy:
class Type(enum.Enum):
DIRECT = enum.auto()
HTTP = enum.auto()
SOCKS = enum.auto()