jiff/tz/db/concatenated/
mod.rs

1pub(crate) use self::inner::*;
2
3#[cfg(not(feature = "tzdb-concatenated"))]
4#[path = "disabled.rs"]
5mod inner;
6#[cfg(feature = "tzdb-concatenated")]
7#[path = "enabled.rs"]
8mod inner;