mammon

Crates.iomammon
lib.rsmammon
version0.0.1
sourcesrc
created_at2023-11-07 00:28:07.919276
updated_at2023-11-07 00:28:07.919276
descriptionsimple, bad, blob storage api
homepage
repositoryhttps://github.com/Ruthenic/mammon
max_upload_size
id1027386
size7,617
Drake (Ruthenic)

documentation

README

mammon

simple, bad, blob storage api

examples

pub fn main() {
    let store = Store::new("store_dir");

    store.store("foo", vec![1, 2, 3]).unwrap();

    println!("{:?}", store.retrieve("foo").unwrap()); // vec![1, 2, 3]
}
Commit count: 1

cargo fmt