1 2 3 4 5 6 7
use anyhow::Result; use crate::config::CliConfig; pub trait ExecutableCommand { fn execute(&self, ctx: &CliConfig) -> Result<()>; }