wasm change

This commit is contained in:
2023-08-30 16:58:26 +08:00
parent b8d5c7c2f8
commit 968e3537b6
4 changed files with 74 additions and 1 deletions

19
.vscode/launch.json vendored
View File

@@ -4,6 +4,7 @@
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "调试模式",
"type": "go",
@@ -11,6 +12,22 @@
"mode": "debug",
"program": "./restagent/restagent.go",
"console": "integratedTerminal"
}
},
{
"name": "调试模式restagent",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "d:/local.git/ems.agt/restagent/restagent.go",
"console": "integratedTerminal"
},
{
"name": "debug sshsvc",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "d:/local.git/ems.agt/sshsvc/sshsvc.go",
"console": "integratedTerminal"
}
]
}