mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-28 16:42:20 +00:00
11 lines
225 B
Swift
11 lines
225 B
Swift
import Foundation
|
|
#if os(macOS)
|
|
import SwiftSignalKitMac
|
|
#else
|
|
import SwiftSignalKit
|
|
#endif
|
|
|
|
protocol IncrementalUpgrade {
|
|
func upgrade(from previous: ValueBox, tmpBasePath: String) -> Signal<ValueBox, NoError>
|
|
}
|