blockchain/.vscode/launch.json

20 lines
645 B
JSON
Raw Normal View History

2025-08-04 01:55:56 +00:00
{
// 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.go",
"type": "go",
"request": "launch",
"mode": "auto", // 也可選 debug/test/remote
"program": "${workspaceFolder}/blockchain.go", // 或你的專案主程式
"env": {
"GOPATH": "/home/wang/go"
},
// "args": ["-arg1", "value"]
}
]
}