mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-05-09 20:47:22 +00:00
10 lines
166 B
Swift
10 lines
166 B
Swift
import Foundation
|
|
import Brief
|
|
|
|
@objc public protocol UpdaterProtocol {
|
|
|
|
func installUpdate(url: URL) async throws -> String
|
|
func authorize() async throws
|
|
|
|
}
|