diff --git a/crates/bitwarden-db/src/wasm/params.rs b/crates/bitwarden-db/src/wasm/params.rs index a56a428b1..4a79c4e5a 100644 --- a/crates/bitwarden-db/src/wasm/params.rs +++ b/crates/bitwarden-db/src/wasm/params.rs @@ -1,11 +1,11 @@ -use uuid::Uuid; -use wasm_bindgen::JsValue; - //! This file is heavily inspired by the rusqlite library. And provides a mostly API compatible //! interface for use with WebAssembly //! //! https://github.com/rusqlite/rusqlite/blob/master/src/lib.rs +use uuid::Uuid; +use wasm_bindgen::JsValue; + pub trait ToSql { fn to_sql(&self) -> JsValue; }