Skip to main content

confium_daemon/methods/
keyfmt.rs

1//! Key format methods.
2//!
3//! Skeleton handlers pending per-connection handle management.
4
5use crate::pending_method;
6
7pending_method!(
8    keyfmt_parse,
9    "keyfmt_parse",
10    "requires per-connection handle management (pending)"
11);
12pending_method!(
13    keyfmt_serialize,
14    "keyfmt_serialize",
15    "requires per-connection handle management (pending)"
16);