Skip to main content

asciigraph/
lib.rs

1// Library entry
2
3pub mod color;
4pub mod options;
5pub mod utils;
6pub mod legend;
7pub mod asciigraph;
8
9pub use crate::color::AnsiColor;
10pub use crate::options::{
11    CharSet, Config, ZeroLine, Threshold, StatAnnotations, DEFAULT_CHAR_SET, create_char_set
12};
13pub use crate::asciigraph::{plot, plot_many};