2025-06-05 07:32:18 +00:00

8 lines
206 B
Python

from sqlalchemy.orm import Session
def init_db(db: Session) -> None:
"""Initialize the database with initial data."""
# This will be implemented after creating the user model and service
pass