MobileCoin-Swift/Sources/Storage/StorageAdapter.swift
Kyle Fleming b4ac1178be Big bang
2021-03-15 22:58:02 -10:00

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)
}