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

9 lines
235 B
Rust
Raw Normal View History

use derive_more::Display;
use serde::Serialize;
use crate::newtype;
newtype!(RepoAlias: String, Display, Default, PartialOrd, Ord, Serialize: r#"The alias of a repo.
This is the alias for the repo within `git-next-server.toml`."#);