canic 0.99.26

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
14
15
16
17
18
///
/// Opinionated prelude for Canic canister crates.
///
/// Prefer importing from the prelude in your canister `lib.rs` to keep endpoint
/// modules small and consistent. Library crates and shared modules should
/// generally import from specific paths instead of pulling in the entire prelude.
///
pub use crate::{
    api::{
        call::Call,
        canister::CanisterRole,
        ops::{log, perf},
        timer::{timer, timer_interval},
    },
    dto::auth::DelegatedToken,
};

pub use canic_macros::{canic_query, canic_update};