Initial release: DictIA v0.8.14-alpha (fork de Speakr, AGPL-3.0)
This commit is contained in:
12
src/database.py
Normal file
12
src/database.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
Database initialization module.
|
||||
|
||||
This module creates and exports the SQLAlchemy database instance
|
||||
that is used across all models.
|
||||
"""
|
||||
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
|
||||
# Create the SQLAlchemy database instance
|
||||
# This will be initialized with the Flask app using db.init_app(app)
|
||||
db = SQLAlchemy()
|
||||
Reference in New Issue
Block a user