10 lines
215 B
Python
10 lines
215 B
Python
"""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"]
|