移除不必要的文件

This commit is contained in:
liwei_3d 2022-06-01 10:16:54 +08:00
parent 866cbf7858
commit 4c5cb00aae

34
.vscode/launch.json vendored
View File

@ -1,34 +0,0 @@
{
// 使 IntelliSense
//
// 访: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "gateway_1",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/services/gateway", //Gomain.go,${workspaceRoot}, /bin /pkg /src
"args": ["-conf","./conf/gateway_1.yaml"],
"cwd": "${workspaceFolder}/bin", //
"internalConsoleOptions": "openOnSessionStart",
"output": "${workspaceFolder}/bin/vsdebug_gateway", //vscode
"showGlobalVariables": true,
"env": {}, //,gopathgopath:gopath
},
{
"name": "worker_1",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/services/worker", //Gomain.go,${workspaceRoot}, /bin /pkg /src
"args": ["-conf","./conf/worker_1.yaml"],
"cwd": "${workspaceFolder}/bin", //
"internalConsoleOptions": "openOnSessionStart",
"output": "${workspaceFolder}/bin/vsdebug_worker", //vscode
"showGlobalVariables": true,
"env": {}, //,gopathgopath:gopath
}
]
}