1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-10-28 10:09:39 +01:00

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

This commit is contained in:
Bradley Hilton 2020-06-23 02:42:56 -05:00 committed by GitHub
parent fe96739f60
commit af1e2c5dd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

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