Start refactoring bot, add /remind add command

This commit is contained in:
2025-01-03 15:03:47 +01:00
parent 2e30cafbac
commit c8b6dbfe41
19 changed files with 279 additions and 2774 deletions

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

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Start bot",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/discord_reminder_bot/main.py",
"console": "integratedTerminal",
}
]
}

20
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"cSpell.words": [
"apscheduler",
"asctime",
"audioop",
"dateparser",
"docstrings",
"dotenv",
"hikari",
"isort",
"jobstores",
"levelname",
"Lovinator",
"pycodestyle",
"pydocstyle",
"sqlalchemy",
"uvloop"
],
"python.analysis.typeCheckingMode": "standard"
}