mirror of
https://github.com/koloideal/DutyLog.git
synced 2026-06-10 10:25:29 +03:00
8 lines
205 B
Python
8 lines
205 B
Python
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from src.dutylog.infrastructure.database.dao.users_dao import UsersDAO
|
|
|
|
|
|
def get_users_dao(session: AsyncSession) -> UsersDAO:
|
|
return UsersDAO(session)
|