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 edit;
8mod get;
9mod restore;
10
11/// Client for performing admin operations on ciphers. Unlike the regular CiphersClient,
12/// this client uses the admin server API endpoints, and does not modify local state.
13#[cfg_attr(feature = "wasm", wasm_bindgen)]
14pub struct CipherAdminClient {
15    pub(crate) client: Client,
16}