Add launch.json for VS Code

This commit is contained in:
eikendev 2022-04-09 16:43:08 +02:00
parent 6d6c19de30
commit aa0ba6b65d
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// 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/pushbits",
"cwd": "${workspaceFolder}"
}
]
}