secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2022-12-22 18:33:05 -05:00

17 lines
254 B
Swift

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