secretive/Sources/Packages/Sources/Brief/UpdaterProtocol.swift

13 lines
375 B
Swift
Raw Normal View History

2022-01-02 05:46:01 +00:00
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 }
}