mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-03-29 00:58:09 -04:00
12 lines
225 B
Rust
12 lines
225 B
Rust
mod table_db;
|
|
use crate::xx::*;
|
|
|
|
#[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::*;
|