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