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