diff options
author | David Timber <dxdt@dev.snart.me> | 2024-05-01 00:37:21 +0900 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-05-01 00:37:21 +0900 |
commit | 0881bc4df7ad5225da10e0028fdf73e95c8fa943 (patch) | |
tree | 0fcbc134c87e6a4579d29272634f0af83699afd4 /.vscode/launch.json |
Initial commit
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..fbd3346 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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": "okkybot", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/src", + "module": "okkybot", + "args": [], + "justMyCode": true + }, + ] +} |