Debug config

This commit is contained in:
Kay Ohtie 2023-11-30 09:39:50 -06:00
parent 9f83517e05
commit 32a978114e

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

@ -0,0 +1,16 @@
{
// 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": "Python: Bot",
"type": "python",
"request": "launch",
"program": "bot.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}