mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-08-27 15:40:57 +00:00
16 lines
237 B
Swift
16 lines
237 B
Swift
import Foundation
|
|
|
|
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
|
|
|
|
let running: Bool
|
|
let developmentBuild = false
|
|
|
|
init(running: Bool = true) {
|
|
self.running = running
|
|
}
|
|
|
|
func check() {
|
|
}
|
|
|
|
}
|