gin framework

This commit is contained in:
2021-05-18 13:06:40 +08:00
parent 968c92d479
commit ae93d82716
18 changed files with 506 additions and 1 deletions

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

@@ -0,0 +1,19 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/${workspaceFolderBasename}",
"preLaunchTask": "build",
"env": {
"GIN_MODE": "release"
}
}
]
}