veilid/veilid-core/src/intf/mod.rs

11 lines
207 B
Rust
Raw Normal View History

2021-11-22 16:28:30 +00:00
mod table_db;
#[cfg(target_arch = "wasm32")]
mod wasm;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;
#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(not(target_arch = "wasm32"))]
pub use native::*;