//! This module provides the api definition for working with lib3h
extern crate backtrace;
extern crate holochain_persistence_api;
extern crate serde;
extern crate serde_derive;
extern crate rmp_serde;
extern crate shrinkwraprs;
/// 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;