fix: cargo fmt
All checks were successful
Run Check Script / check (push) Successful in 1m47s
Run Check Script / check (pull_request) Successful in 1m47s

This commit is contained in:
Willem 2025-06-02 16:20:49 -04:00
parent a2be9457b9
commit 12eb4ae31f
2 changed files with 4 additions and 7 deletions

View File

@ -8,7 +8,7 @@ use crate::interpret::InterpretError;
use crate::{interpret::Outcome, topology::Topology};
/// Represents an entity responsible for collecting and organizing observability data
/// from various telemetry sources
/// from various telemetry sources
/// A `Monitor` abstracts the logic required to scrape, aggregate, and structure
/// monitoring data, enabling consistent processing regardless of the underlying data source.
#[async_trait]

View File

@ -4,9 +4,7 @@ use url::Url;
use crate::{
interpret::{InterpretError, Outcome},
topology::
K8sAnywhereTopology
,
topology::K8sAnywhereTopology,
};
#[derive(Debug, Clone)]
@ -35,8 +33,8 @@ pub trait AlertManagerConfig<T> {
#[async_trait]
impl<T: DiscordWebhookReceiver> AlertManagerConfig<T> for DiscordWebhookConfig {
fn get_alert_manager_config(&self) -> Result<Value, InterpretError>{
todo!()
fn get_alert_manager_config(&self) -> Result<Value, InterpretError> {
todo!()
}
}
@ -55,4 +53,3 @@ impl DiscordWebhookReceiver for K8sAnywhereTopology {
todo!()
}
}