1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use derive_more::Display;
use serde::Serialize;

use crate::newtype;

newtype!(
    RepoAlias,
    String,
    Display,
    Default,
    Hash,
    PartialOrd,
    Ord,
    Serialize,
    r#"The alias of a repo.

This is the alias for the repo within `git-next-server.toml`."#
);