mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
10 lines
238 B
Swift
10 lines
238 B
Swift
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
import Foundation
|
|
|
|
public protocol SecureStorageProvider: AnyObject {
|
|
func get(key: String) throws -> String?
|
|
func set(key: String, value: String) throws
|
|
func remove(key: String) throws
|
|
}
|