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

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "go",
"args": [
"build", "-v", "-o", "${workspaceFolderBasename}"
],
}
]
}