1 2 3 4 5
use crate::error::KeyToolError; pub trait Cmd { fn run(&self) -> Result<(), KeyToolError>; }