Changed modules to extensions

This commit is contained in:
2022-06-19 13:22:24 +01:00
parent ac02f4dee1
commit 12207d1159
6 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
from flask_bootstrap import Bootstrap
bootstrap = Bootstrap()
from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect()
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()
from flask_login import LoginManager
login_manager = LoginManager()
from flask_mail import Mail
mail = Mail()