gtn/.vscode/launch.json

13 lines
292 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
2023-10-28 00:42:01 +00:00
"name": "Python: Launch",
"type": "python",
"request": "launch",
"program": "src/main.py",
2023-10-28 00:42:01 +00:00
"console": "integratedTerminal",
"justMyCode": true
}
]
}