ockam_api 0.48.0

Ockam's request-response API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub(crate) mod connection;
pub mod models;
pub mod registry;
pub mod service;
pub use service::background_node::*;
pub use service::in_memory_node::*;

/// A const address to bind and send messages to
pub const NODEMANAGER_ADDR: &str = "_internal.nodemanager";

pub use service::credentials::*;
/// The main node-manager service running on remote nodes
pub use service::{IdentityOverride, NodeManager, NodeManagerWorker};