add tasks repo update uow and manager

This commit is contained in:
IluaAir
2025-08-08 14:04:33 +03:00
parent 6657f55545
commit 9c20b7690c
3 changed files with 9 additions and 0 deletions

5
src/repository/tasks.py Normal file
View File

@@ -0,0 +1,5 @@
from src.repository.base import BaseRepo
from src.models.tasks import TasksORM
class TasksRepo(BaseRepo):
model = TasksORM