git_next_core/config/
repo_alias.rs1use derive_more::Display;
2use serde::Serialize;
3
4use crate::newtype;
5
6newtype!(
7 RepoAlias,
8 String,
9 Display,
10 Default,
11 Hash,
12 PartialOrd,
13 Ord,
14 Serialize,
15 r#"The alias of a repo.
16
17This is the alias for the repo within `git-next-server.toml`."#
18);