diff --git a/extract_otp_secret_keys.code-workspace b/extract_otp_secret_keys.code-workspace index fa59c7e..3d6220a 100644 --- a/extract_otp_secret_keys.code-workspace +++ b/extract_otp_secret_keys.code-workspace @@ -6,5 +6,20 @@ ], "settings": { "python.testing.pytestEnabled": true + }, + "launch": { + "version": "0.2.0", + "configurations": [ + { + "name": "Python: extract_otp_secret_keys.py", + "type": "python", + "request": "launch", + "program": "extract_otp_secret_keys.py", + "args": [ + "example_export.txt" + ], + "console": "integratedTerminal" + }, + ] } -} \ No newline at end of file +}