Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: da2f8f614155989345d0d3efd0c0f29ef410c187 Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com> Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com> Reviewed-by: @mbelinky
17 lines
565 B
Swift
17 lines
565 B
Swift
import Foundation
|
|
import OpenClawKit
|
|
|
|
enum KeychainStore {
|
|
static func loadString(service: String, account: String) -> String? {
|
|
GenericPasswordKeychainStore.loadString(service: service, account: account)
|
|
}
|
|
|
|
static func saveString(_ value: String, service: String, account: String) -> Bool {
|
|
GenericPasswordKeychainStore.saveString(value, service: service, account: account)
|
|
}
|
|
|
|
static func delete(service: String, account: String) -> Bool {
|
|
GenericPasswordKeychainStore.delete(service: service, account: account)
|
|
}
|
|
}
|