Files
obs-spotify/.vscode/launch.json
Ilya Suhodolskiy 7afbff6a12 Initial commit
2023-05-18 17:05:07 +04:00

15 lines
272 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run App",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"cwd": "${workspaceFolder}",
"args": ["-port", "5173"]
}
]
}