secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2025-08-14 20:16:34 -07:00

17 lines
252 B
Swift

import Foundation
import Combine
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
let running: Bool
let developmentBuild = false
init(running: Bool = true) {
self.running = running
}
func check() {
}
}