1 2 3 4 5 6 7 8 9 10
use crate::{conventional::Config, Error}; mod changelog; mod check; mod commit; mod version; pub(crate) trait Command { fn exec(&self, config: Config) -> Result<(), Error>; }