From 3df012dd69c84dd4eadc02f00cecac25d13961a7 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Wed, 26 Mar 2025 21:59:33 -0700 Subject: [PATCH] add launch.json --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b70e770 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.1.0", + "configurations": [ + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}", + "module": "mtcontact.main", + "args": [] + } + ] +} \ No newline at end of file