mirror of
				https://github.com/maxgoedjen/secretive.git
				synced 2025-11-04 09:20:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			494 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			494 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
import Foundation
 | 
						|
import AppKit
 | 
						|
 | 
						|
class PreviewAgentLaunchController: AgentLaunchControllerProtocol {
 | 
						|
 | 
						|
    let running: Bool
 | 
						|
    let process: NSRunningApplication?
 | 
						|
    let developmentBuild = false
 | 
						|
 | 
						|
    init(running: Bool = true, process: NSRunningApplication? = nil) {
 | 
						|
        self.running = running
 | 
						|
        self.process = process
 | 
						|
    }
 | 
						|
 | 
						|
    func check() {
 | 
						|
    }
 | 
						|
 | 
						|
    func install() async throws {
 | 
						|
    }
 | 
						|
 | 
						|
    func uninstall() async throws {
 | 
						|
    }
 | 
						|
 | 
						|
    func forceLaunch() async throws {
 | 
						|
    }
 | 
						|
 | 
						|
}
 |