weather/.vscode/launch.json

26 lines
851 B
JSON
Raw Normal View History

{
// 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": "Run weather applicaton",
"type": "go",
"request": "launch",
"mode": "auto",
2021-04-07 21:02:36 +00:00
"buildFlags": "-tags dev",
"program": "${workspaceFolder}/cmd/weather/main.go",
"cwd": "${workspaceFolder}"
},
{
"name": "Run poller applicaton",
"type": "go",
"request": "launch",
"mode": "auto",
2021-04-07 21:02:36 +00:00
"buildFlags": "-tags dev",
"program": "${workspaceFolder}/cmd/poller/main.go",
"cwd": "${workspaceFolder}"
}
]
}