mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 21:47:08 +00:00
9daae8957a
* Add agent checker * Check on foreground
13 lines
193 B
Swift
13 lines
193 B
Swift
import Foundation
|
|
import Combine
|
|
|
|
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
|
|
|
|
let running: Bool
|
|
|
|
init(running: Bool = true) {
|
|
self.running = running
|
|
}
|
|
|
|
}
|