pub mod conversions;
pub mod math {
pub use std::f64::consts::PI;
pub use std::f64::consts::E as EULER;
}
pub mod planets;
#[cfg(test)]
mod tests {
use crate::math;
#[test]
fn math_tests() {
assert_eq!(math::PI, std::f64::consts::PI);
assert_eq!(math::EULER, std::f64::consts::E);
}
}