secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2025-08-23 18:04:11 -07:00

16 lines
237 B
Swift

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