7 lines
158 B
Python
7 lines
158 B
Python
"""
|
|
Database base configuration.
|
|
"""
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
# SQLAlchemy Base class for all models
|
|
Base = declarative_base() |