1 | cfg_if::cfg_if! { |
---|---|
2 | if #[cfg(feature = "noop")] { |
3 | mod noop; |
4 | pub use self::noop::*; |
5 | } else { |
6 | mod napi; |
7 | pub use self::napi::*; |
8 | } |
9 | } |
10 |
1 | cfg_if::cfg_if! { |
---|---|
2 | if #[cfg(feature = "noop")] { |
3 | mod noop; |
4 | pub use self::noop::*; |
5 | } else { |
6 | mod napi; |
7 | pub use self::napi::*; |
8 | } |
9 | } |
10 |