1
mirror of https://github.com/jlelse/GoBlog synced 2024-05-29 08:14:27 +00:00
GoBlog/.vscode/launch.json

14 lines
331 B
JSON
Raw Normal View History

2020-09-26 14:14:29 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Executable",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/GoBlog",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build"
}
]
}