v2: tabs, chain builder, obfuscation modes, hop slider, Defender exclusion, firewall kept
Made-with: Cursor
This commit is contained in:
15
proxy_chain_manager/paths.py
Normal file
15
proxy_chain_manager/paths.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def app_data_dir() -> Path:
|
||||
base = os.environ.get("LOCALAPPDATA") or str(Path.home() / "AppData" / "Local")
|
||||
d = Path(base) / "ProxyChainManager"
|
||||
d.mkdir(parents=True, exist_ok=True)
|
||||
return d
|
||||
|
||||
|
||||
def gost_exe_path() -> Path:
|
||||
return app_data_dir() / "gost.exe"
|
||||
Reference in New Issue
Block a user