git-next/crates/config/src/host_name.rs

9 lines
216 B
Rust
Raw Normal View History

/// The hostname of a forge
#[derive(Clone, Debug, PartialEq, Eq, derive_more::Display)]
2024-05-14 07:59:31 +01:00
pub struct Hostname(String);
impl Hostname {
pub fn new(str: impl Into<String>) -> Self {
Self(str.into())
}
}