From 77854681a015a0d3c6a083813c9866e39e125d67 Mon Sep 17 00:00:00 2001 From: Fedorov Vladimir Date: Fri, 13 Jun 2025 21:51:29 +0700 Subject: [PATCH] add launch.json --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b7540a2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // 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", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceFolder}/cmd/evening_detective", + "args": [ + "--local" + ], + "cwd": "${workspaceFolder}", + "buildFlags": "-tags local" + } + ] +}