WIP registration platform + discord bot

This commit is contained in:
2026-01-03 20:37:22 +01:00
parent 073087e644
commit 5afac8f90d
13 changed files with 648 additions and 0 deletions

5
app/extensions.py Normal file
View File

@@ -0,0 +1,5 @@
from flask_sqlalchemy import SQLAlchemy
from flask_mail import Mail
db = SQLAlchemy()
mail = Mail()