mirror of
https://github.com/unshackle-dl/unshackle.git
synced 2025-10-23 15:11:08 +00:00
Original code by @p0llux12 - Discord - Introduced `SurfsharkVPN` class for proxy service integration. - Updated configuration to include `surfsharkvpn` in proxy providers. - Removed legacy `nordvpn` configuration from YAML. - Enhanced `dl.py` and `search.py` to utilize `SurfsharkVPN`.
7 lines
172 B
Python
7 lines
172 B
Python
from .basic import Basic
|
|
from .hola import Hola
|
|
from .nordvpn import NordVPN
|
|
from .surfsharkvpn import SurfsharkVPN
|
|
|
|
__all__ = ("Basic", "Hola", "NordVPN", "SurfsharkVPN")
|