7 lines
148 B
Python
7 lines
148 B
Python
from app.core.database import Database
|
|
|
|
|
|
class BaseRepository:
|
|
def __init__(self, database: Database) -> None:
|
|
self.database = database
|