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,
    vacation::{get::JmapVacationGetCommand, set::JmapVacationSetCommand},
};

/// Manage JMAP vacation response.
#[derive(Debug, Subcommand)]
pub enum JmapVacationCommand {
    /// Get the vacation response (VacationResponse/get).
    Get(JmapVacationGetCommand),
    /// Update the vacation response (VacationResponse/set).
    Set(JmapVacationSetCommand),
}

impl JmapVacationCommand {
    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),
            Self::Set(cmd) => cmd.execute(printer, client),
        }
    }
}