mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 21:47:08 +00:00
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
|
||
|
}
|
||
|
|
||
|
}
|