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