clap_runner/command/
model.rs

1
2
3
4
5
6
use faststr::FastStr;

pub enum CallbackStatus {
    Continue,
    Abort{reason: FastStr},
}