feat(): yandex and email sign in

This commit is contained in:
doas root
2025-11-19 01:27:15 +03:00
parent 81cf298b5a
commit 8c7ce13922
5 changed files with 191 additions and 13 deletions
@@ -1,11 +1,13 @@
from dishka import BaseScope, Provider, Scope, provide_all
from template_project.application.auth_identity.interactors.sign_up import AuthIdentityInteractor
from template_project.application.auth_identity.interactors.sign_in import SignInInteractor
from template_project.application.auth_identity.interactors.sign_up import SignUpInteractor
class InteractorProvider(Provider):
scope: BaseScope | None = Scope.REQUEST
interactors = provide_all(
AuthIdentityInteractor,
SignInInteractor,
SignUpInteractor,
)