feat: v1.13.5

This commit is contained in:
2025-05-14 00:08:56 +08:00
parent fb026c9f21
commit b4beaa3a75
8 changed files with 202 additions and 36 deletions

View File

@@ -45,6 +45,10 @@ pub fn build_parameter_arg() -> Arg<'static, 'static> {
Arg::with_name("parameter").long("parameter").takes_value(true).required(true).help("Parameter")
}
pub fn build_epk_arg() -> Arg<'static, 'static> {
Arg::with_name("epk").long("epk").required(true).takes_value(true).help("E-Public key")
}
pub fn build_message_arg() -> Arg<'static, 'static> {
Arg::with_name("message-base64").long("message-base64").takes_value(true).required(true).help("Message in base64")
}