1cfg_if::cfg_if! {
4 if #[cfg(feature = "color_scheme")] {
5 pub mod color_scheme;
6 }
7}
8
9cfg_if::cfg_if! {
10 if #[cfg(feature = "geolocation")] {
11 pub mod geolocation;
12 }
13}
14
15cfg_if::cfg_if! {
16 if #[cfg(any(feature = "utils"))] {
17 pub mod utils;
18 }
19}
20
21cfg_if::cfg_if! {
22 if #[cfg(feature = "i18n")] {
23 pub mod i18n;
24 }
25}
26
27cfg_if::cfg_if! {
28 if #[cfg(feature = "clipboard")] {
29 pub mod clipboard;
30 }
31}
32
33cfg_if::cfg_if! {
34 if #[cfg(feature = "storage")] {
35 pub mod storage;
36 }
37}