pub trait AuthorArgs {
    fn author_command(&self) -> Option<&str>;
    fn author_file(&self) -> Option<&str>;
}
Expand description

From a cli args, get the author configuration

Required methods

Get the command to run to generate the authors file

Get path to author file

Implementors