first commit

This commit is contained in:
2026-06-03 13:57:20 +08:00
commit 213e0f2b6e
37 changed files with 3789 additions and 0 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": "IAM",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/zd_iam/server/cmd/main.go",
"args": ["config","${workspaceFolder}/zd_iam/server/config/config.yaml"]
},
{
"name": "SYSTEM",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/zd_system/server/cmd/system/main.go",
"args": ["config","${workspaceFolder}/zd_system/server/config/config.yaml"]
}
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"editor.mouseWheelZoom": true
}