1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Simple progress bar implementations.
//! use these or create your own!

pub mod simple;
pub use simple::SimpleBar;

pub mod spinny;
pub use spinny::SpinniBuilder;

pub mod custom;
pub use custom::CustomBar;