ax_core 0.3.2

Core library implementing the functions of ax
Documentation
1
2
3
4
5
6
7
8
9
use crate::util::formats::{ActyxOSResult, NodesLsResponse};
use ax_types::NodeId;
use tokio::sync::oneshot::Sender;

#[derive(Debug)]
pub enum NodesRequest {
    Ls(Sender<ActyxOSResult<NodesLsResponse>>),
    GetNodeId(Sender<ActyxOSResult<NodeId>>),
}