Initial Commit for Dolly:

Dolly is a simple Discord Bot that *right now* only does TODO lists. She does not handle anything else.
This commit is contained in:
Dani
2023-12-21 14:54:10 -05:00
commit 3b5652ebb9
7 changed files with 259 additions and 0 deletions

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

@ -0,0 +1,16 @@
{
// 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": "Dolly",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}