mirror of
				https://github.com/maxgoedjen/secretive.git
				synced 2025-10-31 07:20:57 +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
 | |
|     }
 | |
| 
 | |
| }
 |