set up backend project structure and started on initial models and routes

This commit is contained in:
wisplite
2025-08-27 02:32:52 -05:00
parent 80bf7e9cf2
commit 8263f9c50a
11 changed files with 318 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"go.useLanguageServer": true,
"go.formatTool": "goimports",
"go.lintOnSave": "package",
"go.vetOnSave": "package",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "never"
},
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "never"
}
},
"go.buildOnSave": "off",
"go.lintTool": "golint",
"go.toolsManagement.autoUpdate": true
}