1 2 3 4 5 6 7 8 9
#[cfg(wasm)] #[cfg_attr(wasm, path = "spin_sqlite.rs")] mod connection; #[cfg(not_wasm)] #[cfg_attr(not_wasm, path = "rusqlite.rs")] mod connection; pub use connection::DbConnection;