1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 06:44:30 +00:00
GoBlog/.vscode/launch.json
2020-09-26 16:14:29 +02:00

14 lines
331 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Executable",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/GoBlog",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build"
}
]
}