BAPSicle/.vscode/launch.json
2021-04-17 21:28:57 +01:00

19 lines
491 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Launch Server",
"type": "python",
"request": "launch",
"program": "./launch.py",
"console": "integratedTerminal"
},
{
"name": "Python: Launch Tests: Player",
"type": "python",
"request": "launch",
"module": "tests.test_player",
"console": "integratedTerminal"
}
]
}