1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14

/*!
 
The backend module handles the actual Rust structs that are used to model different Vega charts
 */



pub mod elements;
pub mod bar_chart;
pub mod stacked_bar_chart;
pub mod line_chart;
pub mod traits;
pub mod general;