secretive/Secretive/Preview Content/PreviewAgentStatusChecker.swift
Max Goedjen 9daae8957a
Add notice if agent isn't running (#47)
* Add agent checker
* Check on foreground
2020-03-15 14:36:07 -07:00

13 lines
193 B
Swift

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