Browse Source

Add a launch.json to enable vscode debugging (#24)

pull/27/head
Bradley Hilton 5 years ago committed by GitHub
parent
commit
af1e2c5dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      .vscode/launch.json

12
.vscode/launch.json vendored

@ -0,0 +1,12 @@ @@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}"
}
]
}
Loading…
Cancel
Save