git_next_core/config/
host_name.rs

1//
2use crate::newtype;
3
4newtype!(
5    Hostname,
6    String,
7    derive_more::Display,
8    Default,
9    "The hostname for the forge"
10);