You've already forked RekomenciBackend
12 lines
312 B
Python
12 lines
312 B
Python
from dishka import BaseScope, Provider, Scope, provide_all
|
|
|
|
from template_project.application.resume.interactors.predict_salary import PredictSalaryInteractor
|
|
|
|
|
|
class InteractorProvider(Provider):
|
|
scope: BaseScope | None = Scope.REQUEST
|
|
|
|
interactors = provide_all(
|
|
PredictSalaryInteractor,
|
|
)
|