lunatic_sqlite_api/
lib.rs

1pub mod wire_format;
2
3#[cfg(not(target_arch = "wasm32"))]
4mod sqlite_bindings;
5
6#[cfg(not(target_arch = "wasm32"))]
7pub use sqlite_bindings::*;
8
9#[cfg(target_arch = "wasm32")]
10pub mod guest_api;