1
0
spogulis no https://github.com/maxgoedjen/secretive.git synced 2026-09-10 18:39:02 +02:00
Files
secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
2022-01-01 16:43:29 -08:00

14 rindas
226 B
Swift

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