canic-core 0.82.19

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 dispatch;
mod error;

#[expect(unused_imports)]
pub use dispatch::{CyclesRpc, RequestOps, UpgradeCanisterRpc};
pub use error::RequestOpsError;