8 lines
206 B
Python
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 |