teldrive/.vscode/launch.json

13 lines
275 B
JSON
Raw Normal View History

2023-08-07 03:32:46 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
2024-02-13 18:09:55 +08:00
"program": "${workspaceFolder}",
"args": ["run"]
2023-08-07 03:32:46 +08:00
}
]
}