secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2021-12-31 19:57:36 -08:00

14 lines
226 B
Swift

import Foundation
import Combine
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
let running: Bool
let developmentBuild = false
init(running: Bool = true) {
self.running = running
}
}