mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-09-07 13:00:57 +00:00
* WIP * WIP * WIP * Tweaks. * WIP * WIP * WIP * WIP * WIP * Cleanup * WIP * WIP * WIP * WIP * WIP * WIP * WIP * REmove setup menu item * WIP * . * . * . * Cleaup.
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() {
|
|
}
|
|
|
|
}
|