forked from kemitix/git-next
9 lines
285 B
Rust
9 lines
285 B
Rust
/// The alias of a repo
|
|
/// This is the alias for the repo within `git-next-server.toml`
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash, derive_more::Display)]
|
|
pub struct RepoAlias(String);
|
|
impl RepoAlias {
|
|
pub fn new(str: impl Into<String>) -> Self {
|
|
Self(str.into())
|
|
}
|
|
}
|