codeframe/
lib.rs

1/*!
2see https://github.com/thewebdevel/codeframe for high level description of the library
3*/
4
5pub mod capture;
6pub mod codeframe_builder;
7pub mod codeframe_macro;
8pub mod color;
9mod utils;
10
11pub use crate::capture as capture_codeframe;
12pub use crate::codeframe_builder::Codeframe;
13
14pub use color::Color;