fix(): adaptix is a common dependency due to it being used in domain

This commit is contained in:
gitgernit
2025-11-22 14:26:39 +03:00
parent 00af067f4d
commit 71389d5d82
8 changed files with 181 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
from dishka import BaseScope, Provider, Scope, provide_all
from template_project.ml.interactors.predict_salary import PredictSalaryInteractor
class InteractorProvider(Provider):
scope: BaseScope | None = Scope.REQUEST
interactors = provide_all(
PredictSalaryInteractor,
)