12 lines
224 B
Swift
12 lines
224 B
Swift
//
|
|
// Copyright (c) 2020-2021 MobileCoin. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol StorageAdapter {
|
|
func get(key: String) -> Data?
|
|
func set(key: String, value: Data)
|
|
func clear(key: String)
|
|
}
|