use anyhow::Result;
use clap::Args;
use crate::testing::config::INTEGRATION_TESTS_DIR;
#[derive(Args, Debug)]
#[command()]
pub struct Cli {}
impl Cli {
pub fn exec(&self) -> Result<()> {
crate::commands::compose_tests::ci_paths::exec(INTEGRATION_TESTS_DIR)
}
}