mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-08-26 23:20:57 +00:00
* Slim package * Cleanup * . * Expose tokenID. * Expose some constants. * Open. * Combine cleanup * Make eraser base public. * Reload * Fix concurrency issue on key insertion. * Add capabilities. * . * Revert "." This reverts commit7c5c2924fa
. * Revert "Add capabilities." This reverts commitbfa7a3cd51
.
16 lines
237 B
Swift
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() {
|
|
}
|
|
|
|
}
|