misykat 4.1.2

Islamic library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::excessive_precision)]

mod config;
mod madhab;
mod method;
mod prayer;
mod times;

// shorter access for library consumer
pub use config::Config;
pub use madhab::Madhab;
pub use method::Method;
pub use prayer::Prayer;
pub use times::{Location, PrayerSchedule, PrayerTimes};