Files
fabdash/backend/app/extensions.py

8 lines
155 B
Python
Raw Permalink Normal View History

2026-03-05 12:13:22 -06:00
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_cors import CORS
db = SQLAlchemy()
migrate = Migrate()
cors = CORS()