| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch package",
- "type": "go",
- "request": "launch",
- "mode": "auto",
- "remotePath": "",
- "port": 38697,
- "host": "127.0.0.1",
- "program": "${workspaceFolder}",
- "env": {
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "envFile": "${workspaceFolder}/.env",
- "buildFlags":""
- },
- {
- "name": "Debug current package",
- "type": "go",
- "request": "launch",
- "mode": "debug",
- "remotePath": "",
- "port": 38697,
- "host": "127.0.0.1",
- "program": "${fileDirname}",
- "env": {
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "envFile": "${workspaceFolder}/.env",
- "buildFlags":""
- },
- {
- "name": "Launch test function",
- "type": "go",
- "request": "launch",
- "mode": "test",
- "program": "${workspaceFolder}",
- "args": [
- "-test.run",
- "MyTestFunction"
- ]
- },
- {
- "name": "Attach main",
- "type": "go",
- "request": "attach",
- "mode": "debug",
- "remotePath": "",
- "port": 38697,
- "host": "127.0.0.1",
- "program": "${workspaceFolder}/main.go",
- "env": {
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "processId":"",
- "envFile": "${workspaceFolder}/.env",
- "buildFlags":""
- },
- {
- "name": "Attach to Process",
- "type": "go",
- "request": "attach",
- "mode": "local",
- "processId": 0
- },
- {
- "name": "Launch file",
- "type": "go",
- "request": "launch",
- "mode": "debug",
- "program": "${file}"
- }
- ]
- }
|