refactor(topology): remove unused HAClusterTopology import

Remove the unnecessary `HAClusterTopology` import from multiple modules to clean up dependencies and reduce clutter. This change does not affect functionality as `HAClusterTopology` is no longer required in these files.
This commit is contained in:
2025-03-31 15:07:16 -04:00
parent 6e9bf3a4be
commit f7dc15cbf0
11 changed files with 11 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ use crate::{
interpret::{Interpret, InterpretError, InterpretName, InterpretStatus, Outcome},
inventory::Inventory,
score::Score,
topology::{DnsRecord, DnsServer, HAClusterTopology, Topology},
topology::{DnsRecord, DnsServer, Topology},
};
#[derive(Debug, new, Clone)]