1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Traditional astrology for rust
 * ==============================
 *
 * Rust library by Stéphane (s.bressani@bluewin.ch)
 *
 * Using swissephem c library by Astrodienst AG
 * by Dieter Koch and Alois Treindl (https://www.astro.com/ftp/swisseph/)
 *
 * The source code is released under an CC License, which allows it to be used
 * also on commercial projects. This software uses the swiss ephemeris which is
 * licensed GPL.
 *
 * Therefore, if you want to use astro_compute_swisseph in your commercial
 * projects, you must adhere to the GPL license or buy a Swiss Ephemeris
 * commercial license.
 */
mod swe02;
mod swe03;
mod swe07;
mod swe08;
mod swe14;
mod swe17;

pub use self::swe02::handler as handler_swe02;
pub use self::swe03::handler as handler_swe03;
pub use self::swe07::handler as handler_swe07;
pub use self::swe08::handler as handler_swe08;
pub use self::swe14::handler as handler_swe14;
pub use self::swe17::handler as handler_swe17;