Files
meme/.vscode/tasks.json
2025-09-12 16:33:52 +03:00

13 lines
207 B
JSON

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