1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
mod call; /// This module holds structs for all arguments and return types /// that get serialized and deserialized between core native and /// the WASM based ribosome. /// /// When these types get changed their counter parts in all HDKs /// have to change with them! Otherwise we get deserialization /// errors in the ribosome. /// /// For the case of HDK-rust we can use the exact same types by /// importing this module. pub mod commit; pub mod get_entry; pub mod get_links; mod hash_entry; pub mod link_entries; mod query; pub mod validation; mod zome_api_globals; pub use self::{call::*, hash_entry::*, query::*, zome_api_globals::*};