caretta-sync-cli 0.0.2

A local-first application framework for lazy person
Documentation
use caretta_sync_core::utils::runnable::Runnable;
use clap::Args;
use mtid::Dtid;

use crate::cli::args::VerificationIdentifierArgs;

/// Approve an authorization request
#[derive(Args, Debug)]
struct ApproveCommandArgs {
    #[command(flatten)]
    authorization_request: VerificationIdentifierArgs,
    passcode: Dtid,
}

impl Runnable for ApproveCommandArgs {
    fn run(self, app_name: &'static str) {
        todo!()
    }
}