refactor yaak-cli phase 1 command architecture

This commit is contained in:
Gregory Schier
2026-02-16 06:59:23 -08:00
parent 8023603ebe
commit 26e145942a
8 changed files with 615 additions and 394 deletions

View File

@@ -0,0 +1,7 @@
use crate::cli::SendArgs;
use crate::commands::request;
use crate::context::CliContext;
pub async fn run(ctx: &CliContext, args: SendArgs, environment: Option<&str>, verbose: bool) {
request::send_request_by_id(ctx, &args.request_id, environment, verbose).await;
}