Files
fastapi_server/app/common/repository/base_repository.py

7 lines
148 B
Python

from app.core.database import Database
class BaseRepository:
def __init__(self, database: Database) -> None:
self.database = database