mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-13 09:50:17 +00:00
10 lines
207 B
Swift
10 lines
207 B
Swift
import Foundation
|
|
|
|
public final class TelegramApplicationContext {
|
|
public let openUrl: (String) -> Void
|
|
|
|
public init(openUrl: @escaping (String) -> Void) {
|
|
self.openUrl = openUrl
|
|
}
|
|
}
|