14 lines
393 B
Python
14 lines
393 B
Python
"""
|
|
Flask Extensions
|
|
|
|
This module initializes Flask extensions following the application factory pattern.
|
|
Extensions are initialized here without an app instance, then bound to the app
|
|
in the create_app function using init_app().
|
|
"""
|
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_migrate import Migrate
|
|
|
|
# Initialize extensions without app instance
|
|
db = SQLAlchemy()
|
|
migrate = Migrate()
|