github.com/code-to-go/safepool.lib@v0.0.0-20221205180519-ee25e63c226e/.vscode/launch.json (about) 1 { 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "Main", 9 "type": "go", 10 "request": "launch", 11 "mode": "debug", 12 "console": "integratedTerminal", 13 "program": "${workspaceFolder}/main.go" 14 }, 15 { 16 "name": "DB test", 17 "type": "go", 18 "request": "launch", 19 "mode": "test", 20 "program": "${workspaceFolder}/sql", 21 }, 22 { 23 "name": "Engine test", 24 "type": "go", 25 "request": "launch", 26 "mode": "test", 27 "program": "${workspaceFolder}/engine", 28 } 29 ] 30 }