9 lines
147 B
Python
9 lines
147 B
Python
from src.core.database import Base
|
|
|
|
|
|
class BaseRepo:
|
|
model: type[Base] = None
|
|
|
|
def __init__(self, session):
|
|
self.session = session
|