PaperParser/app/extensions.py

5 lines
117 B
Python
Raw Permalink Normal View History

2024-01-31 19:37:01 +10:00
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
db = SQLAlchemy()
migrate = Migrate(db=db)