1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Mit commands
const CONFIG_KEY_EXPIRES: &str = "mit.author.expires";
pub(crate) mod get_authors;
pub(crate) mod get_commit_coauthor_configuration;
#[cfg(test)]
pub(crate) mod get_commit_coauthor_configuration_test;
pub(crate) mod set_commit_authors;
pub(crate) mod set_config_authors;
pub mod errors;
#[cfg(test)]
mod set_commit_authors_test;
#[cfg(test)]
mod set_config_authors_test;
mod vcs;