canic_types/
lib.rs

1//! Shared Canic wrappers around candid-friendly IC/CDK types.
2//! Centralizes domain types so downstreams have a single import surface.
3
4mod cycles;
5mod page;
6mod string;
7mod wasm;
8
9pub use cycles::*;
10pub use page::*;
11pub use string::*;
12pub use wasm::*;