Initial commit to Proxyfier

This commit is contained in:
2026-02-07 01:22:35 +03:00
commit 3f80dab132
10 changed files with 310 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "proxyfier (config.yaml)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"env": {
"PROXYFIER_CONFIG": "${workspaceFolder}/config.yaml"
}
}
]
}