canic-core 0.93.0

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module: ops::rpc::request
//!
//! Responsibility: expose typed request RPC commands and dispatch errors.
//! Does not own: workflow authorization, endpoint handling, or stable state.
//! Boundary: exposes ops-level dispatch helpers and errors.

mod conversion;
mod dispatch;
mod error;

pub(super) use conversion::RequestConversionOps;
pub use dispatch::RequestOps;
pub(super) use error::RequestOpsError;