canic_core/ids/
mod.rs

1//!
2//! Shared type wrappers and aliases used across the ops and endpoint layers.
3//!
4//! These helpers centralize candid-friendly structs plus bounded/principal
5//! utilities so consumers can `use canic::types::*` without reaching into
6//! submodules.
7//!
8
9mod canister;
10mod subnet;
11
12pub use canister::*;
13pub use subnet::*;