7 lines
296 B
Python
7 lines
296 B
Python
from sqlalchemy.ext.asyncio import AsyncSession, async_sessionmaker, create_async_engine
|
|
|
|
from app.core.config import get_settings
|
|
|
|
engine = create_async_engine(get_settings().mysql_dsn, pool_pre_ping=True)
|
|
SessionFactory = async_sessionmaker(engine, class_=AsyncSession, expire_on_commit=False)
|