mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-06-28 08:51:37 +00:00
19 lines
359 B
Swift
19 lines
359 B
Swift
import Foundation
|
|
import AppKit
|
|
|
|
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
|
|
|
|
let running: Bool
|
|
let process: NSRunningApplication?
|
|
let developmentBuild = false
|
|
|
|
init(running: Bool = true, process: NSRunningApplication? = nil) {
|
|
self.running = running
|
|
self.process = process
|
|
}
|
|
|
|
func check() {
|
|
}
|
|
|
|
}
|