mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
407 B
Swift
17 lines
407 B
Swift
import SwiftSignalKit
|
|
import Postbox
|
|
|
|
public extension TelegramEngine {
|
|
final class Resolve {
|
|
private let account: Account
|
|
|
|
init(account: Account) {
|
|
self.account = account
|
|
}
|
|
|
|
public func getDeepLinkInfo(path: String) -> Signal<DeepLinkInfo?, NoError> {
|
|
return _internal_getDeepLinkInfo(network: self.account.network, path: path)
|
|
}
|
|
}
|
|
}
|