15 lines
341 B
Python
15 lines
341 B
Python
from sqlalchemy.orm import Session
|
|
|
|
# Import all models here
|
|
# from app.models.item import Item
|
|
# Import all base models for type checking
|
|
from app.db.base_class import Base # noqa
|
|
|
|
|
|
def init_db(db: Session) -> None:
|
|
"""
|
|
Initialize the database with initial data if needed.
|
|
"""
|
|
# Create initial data here if needed
|
|
pass
|