2024-05-11 19:46:20 +01:00
|
|
|
use git_next_config::{Hostname, RepoPath};
|
|
|
|
|
2024-05-15 08:29:41 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, derive_more::Constructor, derive_more::Display)]
|
2024-05-14 16:28:17 +01:00
|
|
|
#[display("{}:{}", host, repo_path)]
|
2024-05-11 19:46:20 +01:00
|
|
|
pub struct GitRemote {
|
|
|
|
host: Hostname,
|
|
|
|
repo_path: RepoPath,
|
|
|
|
}
|
|
|
|
impl GitRemote {
|
|
|
|
pub const fn host(&self) -> &Hostname {
|
|
|
|
&self.host
|
|
|
|
}
|
|
|
|
pub const fn repo_path(&self) -> &RepoPath {
|
|
|
|
&self.repo_path
|
|
|
|
}
|
|
|
|
}
|