bitwarden_vault/cipher/cipher_client/admin/mod.rs
1use bitwarden_core::Client;
2#[cfg(feature = "wasm")]
3use wasm_bindgen::prelude::*;
4
5mod create;
6mod delete;
7mod delete_attachment;
8mod edit;
9mod get;
10mod restore;
11
12/// Client for performing admin operations on ciphers. Unlike the regular CiphersClient,
13/// this client uses the admin server API endpoints, and does not modify local state.
14#[cfg_attr(feature = "wasm", wasm_bindgen)]
15pub struct CipherAdminClient {
16 pub(crate) client: Client,
17}