ockam_api 0.93.0

Ockam's request-response API
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) mod connection;
pub mod models;
pub mod registry;
pub mod service;

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

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