mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-10 17:47:19 +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
|
|
}
|
|
|
|
}
|