1
0
peilaus alkaen https://github.com/maxgoedjen/secretive.git synced 2026-04-02 07:17:25 +02:00
Files
secretive/Sources/Secretive/Preview Content/PreviewAgentStatusChecker.swift
Max Goedjen 9fc7d2548e Add restart
2022-12-22 18:33:05 -05:00

17 rivejä
254 B
Swift

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