fix: remove FileDB export for wasm build (#203)

This commit is contained in:
Noah Citron 2023-03-08 16:25:22 -05:00 committed by GitHub
parent 8da632f8f2
commit 0e20b5f783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -51,10 +51,9 @@
//! Errors used across helios.
pub mod client {
pub use client::{
database::{ConfigDB, FileDB},
Client, ClientBuilder,
};
#[cfg(not(target_arch = "wasm32"))]
pub use client::database::FileDB;
pub use client::{database::ConfigDB, Client, ClientBuilder};
}
pub mod config {