Files
self/packages/native-shell-ios/Sources/SelfNativeShell/API/SecureStorageProvider.swift
Seshanth.S 02e7608050 SELF-2484: Delegate keychain to consumer (#1894)
* SELF-2484: Delegate keychain to consumer

* lint

* update coderabbit comments
2026-03-31 18:29:33 +05:30

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
}