Spaces:
Runtime error
Runtime error
File size: 208 Bytes
cd6f98e |
1 2 3 4 5 6 7 8 9 10 11 |
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
|