git-next/crates/config/src/repo_alias.rs
Paul Campbell 341dc97a51 refactor(git): add mock repository and tests
Repository is now behind an enum to allow selection of a mock Repsitory
for use in tests.
2024-05-21 19:47:01 +01:00

9 lines
294 B
Rust

/// 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)]
pub struct RepoAlias(String);
impl RepoAlias {
pub fn new(str: impl Into<String>) -> Self {
Self(str.into())
}
}