From 0881bc4df7ad5225da10e0028fdf73e95c8fa943 Mon Sep 17 00:00:00 2001 From: David Timber Date: Wed, 1 May 2024 00:37:21 +0900 Subject: Initial commit --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') 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 + }, + ] +} -- cgit