holochain_zome_types 0.0.15

Holochain zome types
Documentation
use crate::prelude::*;

/// The version of the API so that wasm host/guest can stay aligned.
///
/// Something roughly along the lines of the pragma in solidity.
///
/// @todo implement this
#[derive(Debug, Serialize, Deserialize)]
pub enum ZomeApiVersion {
    /// The version from before we really had versions.
    /// Meaningless.
    Zero,
}