2025-02-17 19:44:17 +05:30

11 lines
208 B
Python

from typing import TypeVar
from sqlalchemy.ext.asyncio import AsyncSession
T = TypeVar("T", bound="BaseCrud")
class BaseCrud:
def __init__(self, session: AsyncSession):
self.session = session