1
2
3
4
5
6
cfg_if::cfg_if! {
    if #[cfg(not(target_arch = "wasm32"))] {
        pub mod counters;
        pub mod middleware;
    }
}