From 937aa16f81a0bb657c7d902e3831994a1e8c7e5d Mon Sep 17 00:00:00 2001 From: Vadym Hrynyk <100761978+sliderzxc@users.noreply.github.com> Date: Thu, 1 Feb 2024 01:00:34 +0200 Subject: [PATCH] correct README.MD sample (#45) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b05aed..ba846ef 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ To demonstrate the usage of the SDK, consider the following example: val engine = RSocketTimeMatesRequestsEngine( coroutineScope = Dispatchers.IO, ) -val emailAuth = AccountLoginApi(engineBuilder).email +val emailAuth = AccountLoginApi(engine).email val email = EmailAddress.create("developer@y9vad9.com").getOrElse { return } val authorizationResult = emailAuth.authorize(email)