"""Entry point: `python seed_run.py` (re)populates the demo database."""

from app.db.seed import seed

if __name__ == "__main__":
    seed()
