hdk 0.0.45-alpha1

holochain hdk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{
    error::{ZomeApiError, ZomeApiResult},
    BundleOnClose,
};

/// NOT YET AVAILABLE
pub fn start_bundle(_timeout: usize, _user_param: serde_json::Value) -> ZomeApiResult<()> {
    Err(ZomeApiError::FunctionNotImplemented)
}

/// NOT YET AVAILABLE
pub fn close_bundle(_action: BundleOnClose) -> ZomeApiResult<()> {
    Err(ZomeApiError::FunctionNotImplemented)
}