tons of stuff but working again
This commit is contained in:
11
app/extensions.py
Normal file
11
app/extensions.py
Normal file
@ -0,0 +1,11 @@
|
||||
# File: app/extensions.py
|
||||
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
from flask_migrate import Migrate
|
||||
from flask_login import LoginManager
|
||||
from flask_wtf.csrf import CSRFProtect
|
||||
|
||||
db = SQLAlchemy()
|
||||
migrate = Migrate()
|
||||
login_manager = LoginManager()
|
||||
csrf = CSRFProtect()
|
Reference in New Issue
Block a user