Spaces:
Paused
Paused
File size: 187 Bytes
04477e7 | 1 2 3 4 5 6 7 8 | from flask_sqlalchemy import SQLAlchemy
from flask_login import LoginManager
from flask_wtf.csrf import CSRFProtect
db = SQLAlchemy()
login_manager = LoginManager()
csrf = CSRFProtect()
|