7 lines
121 B
Python
7 lines
121 B
Python
# models/base.py
|
|
"""
|
|
Base module to hold the database instance for all models
|
|
"""
|
|
|
|
# This will be set by app.py
|
|
db = None |