bitwarden_importers/importers/onepassword/mod.rs
1//! 1Password importer.
2//!
3//! [`access`] is the Bitwarden-agnostic client that logs in and downloads the vaults.
4
5// `pub` for the `test-utils` re-export. Nothing in the SDK calls into it yet.
6// TODO: Make it `pub(crate)` once the importer consumes the module directly and the re-export goes.
7#[allow(dead_code, unused_imports)]
8pub mod access;