This commit is contained in:
2026-01-23 16:57:49 +08:00
parent 5e0e7e0069
commit ecd56ef291
37 changed files with 52 additions and 4684 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug WalletMan Server",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/servers/walletman/cmd/server",
"cwd": "${workspaceFolder}/servers/walletman",
"preLaunchTask": "build walletman",
"env": {
"PATH": "/Users/hybro/go/bin:${env:PATH}"
}
}
]
}

8
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,8 @@
{
"go.toolsEnvVars": {
"PATH": "/Users/hybro/go/bin:/usr/local/go/bin:${env:PATH}"
},
"go.alternateTools": {
"dlv": "/Users/hybro/go/bin/dlv"
}
}

26
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build walletman",
"type": "shell",
"command": "go",
"args": [
"build",
"-o",
"${workspaceFolder}/servers/walletman/bin/server",
"./cmd/server"
],
"options": {
"cwd": "${workspaceFolder}/servers/walletman"
},
"problemMatcher": [
"$go"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}