// use git_next_config as config; #[derive(Clone, Debug, PartialEq, Eq, derive_more::Constructor, derive_more::Display)] #[display("{}", sha)] pub struct Commit { sha: Sha, message: Message, } impl Commit { pub const fn sha(&self) -> &Sha { &self.sha } pub const fn message(&self) -> &Message { &self.message } } impl From for Commit { fn from(value: config::webhook::Push) -> Self { Self::new( Sha::new(value.sha().to_owned()), Message::new(value.message().to_owned()), ) } } #[derive(Clone, Debug, PartialEq, Eq, derive_more::Constructor, derive_more::Display)] pub struct Sha(String); #[derive(Clone, Debug, PartialEq, Eq, derive_more::Constructor, derive_more::Display)] pub struct Message(String); #[derive(Clone, Debug)] pub struct Histories { pub main: Vec, pub next: Vec, pub dev: Vec, } pub mod log { pub type Result = core::result::Result; #[derive(Debug, thiserror::Error)] pub enum Error { #[error("gix: {0}")] Gix(String), #[error("lock")] Lock, } impl From for Error { #[cfg(not(tarpaulin_include))] fn from(e: String) -> Self { Self::Gix(e) } } }