Skip to content

Commit c3d4d55

Browse files
committed
Added launch.json
1 parent 6b27e58 commit c3d4d55

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .vscode/launch.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch Go",
6+
"type": "go",
7+
"request": "launch",
8+
"mode": "auto",
9+
"program": "${fileDirname}",
10+
"env": {},
11+
"args": [],
12+
"dlvLoadConfig": {
13+
"followPointers": true,
14+
"maxVariableRecurse": 1,
15+
"maxStringLen": 256,
16+
"maxArrayValues": 64,
17+
"maxStructFields": -1
18+
}
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)