secretive/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2020-03-15 14:33:01 -07:00

13 lines
193 B
Swift

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