1 2 3 4 5 6
use crate::usecase::type_aliases::AnyError; pub trait GitExtraEgressHelper { fn append_type(&self, new_type: &str) -> Result<(), AnyError>; fn append_scope(&self, new_scope: &str) -> Result<(), AnyError>; }