mirror of
https://github.com/unshackle-dl/unshackle.git
synced 2025-10-23 15:11:08 +00:00
Add WindscribeVPN as a new proxy provider option, following the same pattern as NordVPN and SurfsharkVPN implementations. Fixes: #29
8 lines
230 B
Python
8 lines
230 B
Python
from .basic import Basic
|
|
from .hola import Hola
|
|
from .nordvpn import NordVPN
|
|
from .surfsharkvpn import SurfsharkVPN
|
|
from .windscribevpn import WindscribeVPN
|
|
|
|
__all__ = ("Basic", "Hola", "NordVPN", "SurfsharkVPN", "WindscribeVPN")
|