You've already forked RekomenciBackend
12 lines
296 B
Python
12 lines
296 B
Python
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,
|
|
)
|