trible 0.40.3

A knowledge graph and meta file system for object stores.
1
2
3
4
5
6
7
8
use anyhow::Result;
use triblespace::prelude::TryToInline;
use triblespace_core::inline::encodings::hash::Blake3;
use triblespace_core::inline::encodings::hash::Hash;

pub fn parse_blob_handle(handle: &str) -> Result<triblespace_core::inline::Inline<Hash<Blake3>>> {
    handle.try_to_inline().map_err(|e| anyhow::anyhow!("{e:?}"))
}