diff options
author | Cara Salter <cara@devcara.com> | 2023-04-15 11:24:28 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-04-15 11:24:28 -0400 |
commit | ac4a926685c754f4af5adb20edf6eb23e2a0f18a (patch) | |
tree | 2a28e7c798ed1f845bd38a7d5cd0ba465782fb80 /.vscode/launch.json | |
parent | 5058c8bbeff6b659787a8ab482ac89fc4a194076 (diff) | |
download | 142bot-ac4a926685c754f4af5adb20edf6eb23e2a0f18a.tar.gz 142bot-ac4a926685c754f4af5adb20edf6eb23e2a0f18a.zip |
Automagically refresh spotify tokens
Change-Id: I883f28a88776e0a04b90e6d07c255a3fd9f05977
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..89efb96 --- /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": "C++ Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/142bot", + "args": [], + "environment": [], + "cwd": "${workspaceFolder}" + } + ] +}
\ No newline at end of file |