git-next/crates/config/src/repo_alias.rs

10 lines
294 B
Rust
Raw Normal View History

/// The alias of a repo
/// This is the alias for the repo within `git-next-server.toml`
#[derive(Clone, Default, Debug, PartialEq, Eq, Hash, derive_more::Display)]
2024-05-14 07:59:31 +01:00
pub struct RepoAlias(String);
impl RepoAlias {
pub fn new(str: impl Into<String>) -> Self {
Self(str.into())
}
}