feat: Can now select a bootstrap host and save the role mapping to database
Some checks failed
Run Check Script / check (pull_request) Failing after 33s

This commit is contained in:
2025-09-02 00:10:20 -04:00
parent 241980ebec
commit f6e665f990
8 changed files with 106 additions and 16 deletions

View File

@@ -48,6 +48,12 @@ impl From<String> for Id {
}
}
impl From<Id> for String {
fn from(value: Id) -> Self {
value.to_string()
}
}
impl std::fmt::Display for Id {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&self.value)