Spaces:
Running
Running
File size: 187 Bytes
48ec4db |
1 2 3 4 5 6 |
from app.settings import settings
from sqlalchemy.ext.asyncio import create_async_engine
postgres_config = settings.postgres.model_dump()
engine = create_async_engine(**postgres_config)
|