1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
pub mod angles;
pub mod aspects;
pub mod bodies;
pub mod compute_chart;
pub mod houses;
pub mod numbers;
pub mod svg_draw;
pub mod zodiacs;
pub use self::compute_chart::{
    all_aspects, chart_svg, chart_svg_with_transit,
    DataChartNatal, DataObjectAspectSvg, DataObjectSvg, DataObjectType,
};

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}