mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 05:27:28 +00:00
14 lines
226 B
Swift
14 lines
226 B
Swift
import Foundation
|
|
import Combine
|
|
|
|
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
|
|
|
|
let running: Bool
|
|
let developmentBuild = false
|
|
|
|
init(running: Bool = true) {
|
|
self.running = running
|
|
}
|
|
|
|
}
|