Add agent checker

This commit is contained in:
Max Goedjen
2020-03-15 14:33:01 -07:00
parent bde9085d31
commit f9771f5b76
5 changed files with 83 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
import Foundation
import Combine
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
let running: Bool
init(running: Bool = true) {
self.running = running
}
}