tstor/.vscode/launch.json

23 lines
724 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
{
2024-07-07 20:09:13 +00:00
"name": "Generate GraphQL",
2024-03-17 21:00:34 +00:00
"type": "go",
"request": "launch",
"mode": "debug",
2024-07-07 20:09:13 +00:00
"program": "${workspaceFolder}/cmd/generate-graphql/main.go",
2024-03-17 21:00:34 +00:00
},
2023-10-08 16:46:03 +00:00
{
2024-07-07 20:09:13 +00:00
"name": "TStor",
2023-10-08 16:46:03 +00:00
"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
}
]
}