mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-28 18:10:38 +00:00
parent
91ab0b12b0
commit
7b5b5776f0
7 changed files with 64 additions and 22 deletions
|
@ -164,6 +164,9 @@ pub enum CliCommands {
|
|||
#[arg(long)]
|
||||
quote_mention: Vec<String>,
|
||||
|
||||
#[arg(long)]
|
||||
quote_attachment: Vec<String>,
|
||||
|
||||
#[arg(long)]
|
||||
sticker: Option<String>,
|
||||
|
||||
|
|
|
@ -143,6 +143,7 @@ pub trait Rpc {
|
|||
#[allow(non_snake_case)] quoteAuthor: Option<String>,
|
||||
#[allow(non_snake_case)] quoteMessage: Option<String>,
|
||||
#[allow(non_snake_case)] quoteMention: Vec<String>,
|
||||
#[allow(non_snake_case)] quoteAttachment: Vec<String>,
|
||||
sticker: Option<String>,
|
||||
#[allow(non_snake_case)] storyTimestamp: Option<u64>,
|
||||
#[allow(non_snake_case)] storyAuthor: Option<String>,
|
||||
|
|
|
@ -140,6 +140,7 @@ async fn handle_command(
|
|||
quote_author,
|
||||
quote_message,
|
||||
quote_mention,
|
||||
quote_attachment,
|
||||
sticker,
|
||||
story_timestamp,
|
||||
story_author,
|
||||
|
@ -158,6 +159,7 @@ async fn handle_command(
|
|||
quote_author,
|
||||
quote_message,
|
||||
quote_mention,
|
||||
quote_attachment,
|
||||
sticker,
|
||||
story_timestamp,
|
||||
story_author,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue