11 lines
207 B
Rust
11 lines
207 B
Rust
|
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::*;
|