mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-04-09 18:57:22 +02:00
14 lines
392 B
Swift
14 lines
392 B
Swift
import Foundation
|
|
import Synchronization
|
|
|
|
/// A protocol for retreiving the latest available version of an app.
|
|
public protocol UpdaterProtocol: Observable {
|
|
|
|
/// The latest update
|
|
var update: Release? { get }
|
|
/// A boolean describing whether or not the current build of the app is a "test" build (ie, a debug build or otherwise special build)
|
|
var testBuild: Bool { get }
|
|
|
|
}
|
|
|