https://github.com/0xleif/onionstash
Store Onions 🧅
https://github.com/0xleif/onionstash
data swift
Last synced: about 1 year ago
JSON representation
Store Onions 🧅
- Host: GitHub
- URL: https://github.com/0xleif/onionstash
- Owner: 0xLeif
- Created: 2021-10-12T03:56:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T00:11:17.000Z (over 4 years ago)
- Last Synced: 2025-02-10T23:41:49.566Z (over 1 year ago)
- Topics: data, swift
- Language: Swift
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
```