Skip to main content

mit_commit_message_lints/mit/
mod.rs

1//! Interactions relating to reading and setting authors
2
3pub use cmd::{
4    get_authors::{AuthorArgs, GenericArgs, get_authors},
5    get_commit_coauthor_configuration::get_commit_coauthor_configuration,
6    get_config_rotation::get_config_rotation,
7    rotate_authors::rotate_authors,
8    set_commit_authors::set_commit_authors,
9    set_config_authors::set_config_authors,
10    set_config_rotation::set_config_rotation,
11};
12pub use lib::{
13    author::Author, author_state::AuthorState, authors::Authors, rotation_option::RotationOption,
14};
15
16pub mod cmd;
17pub mod lib;