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

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
}
}
]
}