Files
secretive/Sources/Packages/Sources/Brief/UpdaterProtocol.swift
Max Goedjen 576e625b8f More
2025-01-05 16:07:11 -08:00

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 }
}