mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-10 17:47:19 +00:00
13 lines
375 B
Swift
13 lines
375 B
Swift
import Foundation
|
|
|
|
/// A protocol for retreiving the latest available version of an app.
|
|
public protocol UpdaterProtocol: ObservableObject {
|
|
|
|
/// 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 }
|
|
|
|
}
|
|
|