canfund/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Canfund Library
//!
//! `canfund` is a library that provides a set of features for managing cycles of a canister.
//!
//! Those features include:
//!
//! - Monitoring of canister cycles.
//! - Adding cycles to a canister.

pub mod api;
pub mod errors;
pub mod manager;
pub mod operations;
pub mod types;
pub mod utils;

pub use manager::FundManager;