This commit is contained in:
Dev
2025-09-12 16:33:52 +03:00
commit d2314f6934
9 changed files with 939 additions and 0 deletions

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

@@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run GoMeme Server",
"type": "shell",
"command": "go run ./cmd/server",
"isBackground": true,
"problemMatcher": [],
"group": "build"
}
]
}