wip: cargo fmt

This commit is contained in:
2025-10-28 15:45:02 -04:00
parent 44bf21718c
commit 9ba939bde1
3 changed files with 8 additions and 2 deletions

View File

@@ -25,7 +25,9 @@ struct OpnSenseTopology {
#[async_trait]
impl Topology for OpnSenseTopology {
async fn ensure_ready(&self) -> Result<PreparationOutcome, PreparationError> {
Ok(PreparationOutcome::Success{ details: "Success".to_string() })
Ok(PreparationOutcome::Success {
details: "Success".to_string(),
})
}
fn name(&self) -> &str {
"OpnsenseTopology"