We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddac3b2 commit 391319dCopy full SHA for 391319d
1 file changed
.vscode/launch.json
@@ -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
16
17
+ "mode": "test",
18
+ "program": "${relativeFileDirname}"
19
+ }
20
+ ]
21
+}
0 commit comments