From 7d5c68e6718766d45d0fc921523a5f6715d8dd4d Mon Sep 17 00:00:00 2001 From: LordMathis Date: Thu, 28 Aug 2025 19:19:55 +0200 Subject: [PATCH] Add launch configuration for Go server in VSCode --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7f4175c --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Server", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/cmd/server/main.go", + } + ] +} \ No newline at end of file