update_contact.rs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. use anyhow::Result;
  2. use clap::Args;
  3. use tonic::transport::Channel;
  4. use tonic::Request;
  5. use crate::cdk_mint_client::CdkMintClient;
  6. use crate::UpdateContactRequest;
  7. #[derive(Args)]
  8. pub struct AddContactCommand {
  9. method: String,
  10. info: String,
  11. }
  12. pub async fn add_contact(
  13. client: &mut CdkMintClient<Channel>,
  14. sub_command_args: &AddContactCommand,
  15. ) -> Result<()> {
  16. let _response = client
  17. .add_contact(Request::new(UpdateContactRequest {
  18. method: sub_command_args.method.clone(),
  19. info: sub_command_args.info.clone(),
  20. }))
  21. .await?;
  22. Ok(())
  23. }
  24. #[derive(Args)]
  25. pub struct RemoveContactCommand {
  26. method: String,
  27. info: String,
  28. }
  29. pub async fn remove_contact(
  30. client: &mut CdkMintClient<Channel>,
  31. sub_command_args: &RemoveContactCommand,
  32. ) -> Result<()> {
  33. let _response = client
  34. .remove_contact(Request::new(UpdateContactRequest {
  35. method: sub_command_args.method.clone(),
  36. info: sub_command_args.info.clone(),
  37. }))
  38. .await?;
  39. Ok(())
  40. }