confium_daemon/methods/keystore.rs
1//! Keystore methods.
2//!
3//! Skeleton handlers pending per-connection handle management.
4
5use crate::pending_method;
6
7pending_method!(
8 keystore_create,
9 "keystore_create",
10 "requires per-connection handle management (pending)"
11);
12pending_method!(
13 keystore_put_secret,
14 "keystore_put_secret",
15 "requires per-connection handle management (pending)"
16);
17pending_method!(
18 keystore_get_secret,
19 "keystore_get_secret",
20 "requires per-connection handle management (pending)"
21);