Browse Source

debugs

main
LinsRuis.HW1 6 months ago
parent
commit
2d7b9e365b
  1. 5
      .gitignore
  2. 16
      .vscode/launch.json

5
.gitignore

@ -1,2 +1,5 @@
reverse
models/
models/
__debug*
test.yml

16
.vscode/launch.json

@ -0,0 +1,16 @@
{
// 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": "Launch main",
"type": "go",
"request": "launch",
"mode": "debug",
"args":["-f","test.yml"],
"program": "${workspaceFolder}/main.go"
}
]
}
Loading…
Cancel
Save