const CONFIG_KEY_EXPIRES: &str = "mit.author.expires";
const CONFIG_KEY_ROTATION: &str = "mit.author.rotate";
pub(crate) mod get_authors;
#[cfg(test)]
mod get_authors_test;
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;
pub mod get_config_non_clean_behaviour;
pub mod get_config_rotation;
#[cfg(test)]
mod get_config_rotation_test;
pub mod rotate_authors;
#[cfg(test)]
mod rotate_authors_test;
#[cfg(test)]
mod set_commit_authors_test;
#[cfg(test)]
mod set_config_authors_test;
pub mod set_config_non_clean_behaviour;
pub mod set_config_rotation;
#[cfg(test)]
mod set_config_rotation_test;
mod vcs;