Skip to main content

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 send_client;
9pub use send_client::{
10    SendClient, SendClientExt, SendDecryptError, SendDecryptFileError, SendEncryptError,
11    SendEncryptFileError,
12};
13mod create;
14pub use create::{CreateSendError, SendAddRequest};
15mod edit;
16pub use edit::{EditSendError, SendEditRequest};
17mod error;
18pub use error::SendParseError;
19mod get_list;
20pub use get_list::GetSendError;
21mod send;
22pub use send::{
23    AuthType, EmptyEmailListError, Send, SendAuthType, SendFileView, SendId, SendListView,
24    SendTextView, SendType, SendView, SendViewType,
25};