//! This module provides the api definition for working with lib3h
extern crate holochain_persistence_api;
extern crate serde;
extern crate serde_derive;
extern crate rmp_serde;
/// string encoded address type
pub type Address = HashString;
/// type name for a bool indicating if work was done during a `process()`
pub type DidWork = bool;
/// TODO: To replace with our own custom Error handling
use Error;
pub type Lib3hResult<T> = ;