"""Schema/init-oriented DB API for the PostgreSQL runtime.""" from app.db.postgres_connection import apply_migrations, connect as get_conn def init_db(): apply_migrations() __all__ = ["get_conn", "init_db"]