1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-14 16:26:23 -07:00
gochan/.vscode/launch.json
comraderat 5273ad160a Added vscode launch profile
Updated gitignore
2020-04-02 00:45:36 +02:00

18 lines
No EOL
532 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd":"${workspaceFolder}",
"program": "${workspaceFolder}/src/",
"env": {},
"args": [],
}
]
}