from services.db import Base, engine def init_tables(): Base.metadata.create_all(engine) print("[orm] tables initialized")