Skip to content

Commit 391319d

Browse files
committed
Add launch.json
1 parent ddac3b2 commit 391319d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug CLI",
6+
"type": "go",
7+
"request": "launch",
8+
"mode": "auto",
9+
"args": [],
10+
"program": "${workspaceFolder}/cmd/cli"
11+
},
12+
// See: https://stackoverflow.com/a/43233176
13+
{
14+
"name": "Debug Test",
15+
"type": "go",
16+
"request": "launch",
17+
"mode": "test",
18+
"program": "${relativeFileDirname}"
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)