add launch.json

This commit is contained in:
pdxlocations
2025-03-26 21:59:33 -07:00
parent 6d204581ce
commit 3df012dd69
+13
View File
@@ -0,0 +1,13 @@
{
"version": "0.1.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "mtcontact.main",
"args": []
}
]
}