lit_sdk/admin.rs
1//! Admin endpoint methods and data
2
3mod get_blinders;
4mod get_key_backup;
5mod set_blinders;
6
7pub use get_blinders::*;
8pub use get_key_backup::*;
9pub use set_blinders::*;
10
11use serde::{Deserialize, Serialize};
12
13/// The response from an admin endpoint that doesn't return a result
14#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
15pub struct AdminPlainResponse {
16 /// The value of the response
17 pub success: bool,
18}