diff --git a/TangemSdk/TangemSdk/Operations/Read/ReadCommand.swift b/TangemSdk/TangemSdk/Operations/Read/ReadCommand.swift index b0eeb16f..6ece6acc 100644 --- a/TangemSdk/TangemSdk/Operations/Read/ReadCommand.swift +++ b/TangemSdk/TangemSdk/Operations/Read/ReadCommand.swift @@ -11,14 +11,14 @@ import Foundation /// This command receives from the Tangem Card all the data about the card and the wallet, /// including unique card number (CID or cardId) that has to be submitted while calling all other commands. @available(iOS 13.0, *) -final class ReadCommand: Command { - var preflightReadMode: PreflightReadMode { .none } +public final class ReadCommand: Command { + public var preflightReadMode: PreflightReadMode { .none } deinit { Log.debug("ReadCommand deinit") } - func run(in session: CardSession, completion: @escaping CompletionResult) { + public func run(in session: CardSession, completion: @escaping CompletionResult) { transceive(in: session) { result in switch result { case .success(let response):