Private
Public Access
1
0

cargo clippy/fix

This commit is contained in:
2025-04-28 16:06:51 -07:00
parent c189e5f9e3
commit e7d837d68c
13 changed files with 43 additions and 61 deletions

View File

@@ -3,7 +3,6 @@ use kordophone::api::http_client::HTTPAPIClient;
use kordophone::api::http_client::Credentials;
use kordophone::api::InMemoryTokenStore;
use dotenv;
use anyhow::Result;
use clap::Subcommand;
use crate::printers::{ConversationPrinter, MessagePrinter};
@@ -58,7 +57,7 @@ struct ClientCli {
impl ClientCli {
pub fn new() -> Self {
let api = make_api_client_from_env();
Self { api: api }
Self { api }
}
pub async fn print_version(&mut self) -> Result<()> {