himalaya 2.0.0

CLI to manage emails
use anyhow::Result;
use clap::Subcommand;
use pimalaya_cli::printer::Printer;

use crate::account::context::Account;
use crate::jmap::{client::JmapClient, thread::get::JmapThreadGetCommand};

/// Manage JMAP threads.
#[derive(Debug, Subcommand)]
pub enum JmapThreadCommand {
    /// Fetch threads by ID (Thread/get).
    Get(JmapThreadGetCommand),
}

impl JmapThreadCommand {
    pub fn execute(
        self,
        printer: &mut impl Printer,
        account: &mut Account,
        client: &mut JmapClient,
    ) -> Result<()> {
        match self {
            Self::Get(cmd) => cmd.execute(printer, account, client),
        }
    }
}