gpaste/.vscode/launch.json
Torjus Håkestad 786ae6ad94
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Handle multipart form files
2022-01-16 21:29:42 +01:00

16 lines
507 B
JSON

{
// 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": "Debug server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server/server.go",
"cwd": "${workspaceFolder}"
}
]
}