From 54a88ae3d9e9b74fa9bea7e53573c160ab8d598f Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Thu, 20 Dec 2018 06:58:06 +1100 Subject: [PATCH] feat: debug config --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..bc0d6013e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 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": "auto", + "program": "${workspaceFolder}/cmd/wails/main.go", + "env": {}, + "args": [ + "setup" + ] + } + ] +} \ No newline at end of file