2020-03-15 21:36:07 +00:00
|
|
|
import Foundation
|
|
|
|
import Combine
|
|
|
|
|
|
|
|
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
|
|
|
|
|
|
|
|
let running: Bool
|
2021-12-31 22:59:12 +00:00
|
|
|
let developmentBuild = false
|
2020-03-15 21:36:07 +00:00
|
|
|
|
|
|
|
init(running: Bool = true) {
|
|
|
|
self.running = running
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|