An open API service indexing awesome lists of open source software.

https://github.com/0xleif/onionstash

Store Onions 🧅
https://github.com/0xleif/onionstash

data swift

Last synced: about 1 year ago
JSON representation

Store Onions 🧅

Awesome Lists containing this project

README

          

# OnionStash

*Layered Data*

## Onion Layers
- ID
- Optional: Type
- Optional: Meta
- Value

### Layerable
```swift
public protocol Layerable {
func idLayer() -> String
func typeLayer() -> String?
func metaLayer() -> [String: String]?
func valueLayer() -> Data
}
```