From af1e2c5dd0f7701d61667b64bf85e8a75d3ab848 Mon Sep 17 00:00:00 2001 From: Bradley Hilton Date: Tue, 23 Jun 2020 02:42:56 -0500 Subject: [PATCH] Add a launch.json to enable vscode debugging (#24) --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..3352d1082 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceRoot}" + } + ] +}