bitwarden_send/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "uniffi")]
4uniffi::setup_scaffolding!();
5#[cfg(feature = "uniffi")]
6mod uniffi_support;
7
8mod error;
9pub use error::SendParseError;
10mod send_client;
11pub use send_client::{
12 SendClient, SendClientExt, SendDecryptError, SendDecryptFileError, SendEncryptError,
13 SendEncryptFileError,
14};
15mod send;
16pub use send::{Send, SendListView, SendView};