Refactoring

This commit is contained in:
Ali
2021-07-18 01:03:43 +02:00
parent 0bfe6e52b0
commit d4572a9248
85 changed files with 959 additions and 694 deletions

View File

@@ -0,0 +1,16 @@
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)
}
}
}