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

8 lines
205 B
Rust
Raw Normal View History

2024-06-16 08:00:43 +01:00
// The name of a Forge to connect to
crate::newtype!(ForgeAlias is a String);
impl From<&ForgeAlias> for std::path::PathBuf {
fn from(value: &ForgeAlias) -> Self {
Self::from(&value.0)
}
}