You've already forked RekomenciBackend
12 lines
268 B
Python
12 lines
268 B
Python
from dishka import Provider, Scope, provide_all
|
|
|
|
from template_project.application.user.interactors.sign_up import UserSignUpInteractor
|
|
|
|
|
|
class InteractorProvider(Provider):
|
|
scope = Scope.REQUEST
|
|
|
|
interactors = provide_all(
|
|
UserSignUpInteractor,
|
|
)
|