This commit is contained in:
Max Goedjen
2025-08-30 18:56:52 -07:00
parent 19760f1e02
commit b949d846c1
11 changed files with 339 additions and 399 deletions

View File

@@ -1,12 +1,15 @@
import Foundation
import AppKit
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
let running: Bool
let process: NSRunningApplication?
let developmentBuild = false
init(running: Bool = true) {
init(running: Bool = true, process: NSRunningApplication? = nil) {
self.running = running
self.process = process
}
func check() {