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