1
2
3
4
5
6
7
8
9
10
11
12
13
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,
}