1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate holochain_json_derive;

pub mod allocation;
pub mod bytes;
pub mod json;
pub mod result;
pub mod string;

pub use holochain_json_api::error::JsonError;
pub use holochain_json_api::json::JsonString;
pub use result::*;

pub type Ptr = u64;
pub type Len = u64;
pub type AllocationPtr = Ptr;