This commit is contained in:
1
2025-06-20 20:55:06 +00:00
parent e83dec5ffe
commit 69d5755acb
9 changed files with 49 additions and 35 deletions

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

@@ -0,0 +1,24 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Login",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/login"
},
{
"name": "Launch Logic",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}logic"
}
]
}
,