tstor/.vscode/launch.json

23 lines
687 B
JSON
Raw Normal View History

2023-10-08 16:46:03 +00:00
{
// 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": [
2024-03-17 21:00:34 +00:00
{
"name": "Launch file",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${file}"
},
2023-10-08 16:46:03 +00:00
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/tstor/main.go",
2023-12-21 23:15:39 +00:00
"cwd": "${workspaceFolder}/bin"
2023-10-08 16:46:03 +00:00
}
]
}