secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
Max Goedjen b949d846c1
WIP
2025-08-30 18:56:52 -07:00

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() {
}
}