Break up Brief + Document (#311)

This commit is contained in:
Max Goedjen
2022-01-01 21:46:01 -08:00
committed by GitHub
parent eb282b4116
commit da2c460c60
9 changed files with 186 additions and 107 deletions

View File

@@ -0,0 +1,12 @@
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 }
}