REF: Added in Music code

REF: Added in Terms of Services Code
REF: Added in Data Privacy Code
REF: Added the code needed for Selena to run
DOC: launch.json is only for development
This commit is contained in:
Dan
2024-07-20 18:45:02 -04:00
parent 9f02c1da5e
commit 9123144fe2
6 changed files with 356 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// 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": "Selena",
"type": "debugpy",
"request": "launch",
"program": "E:\\Development\\AI Development\\Selena\\main.py",
"console": "integratedTerminal"
}
]
}