Initial FastAPI admin auth scaffold
This commit is contained in:
6
app/common/repository/base_repository.py
Normal file
6
app/common/repository/base_repository.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from app.core.database import Database
|
||||
|
||||
|
||||
class BaseRepository:
|
||||
def __init__(self, database: Database) -> None:
|
||||
self.database = database
|
||||
Reference in New Issue
Block a user