gitbox 2.1.3

Git toolbox to simplify adoption of conventional commits and semantic version, among other things.
Documentation
1
2
3
4
5
use crate::usecase::{license_metadata::LicenseMetadata, type_aliases::AnyError};

pub trait LicenseTextIngressRepository {
    fn text(&self, license: &LicenseMetadata) -> Result<Box<str>, AnyError>;
}