Floris
Results
1
issues of
Floris
will try to route alerts based on their url and alert provider alerts::integrations::mod.rs ```rust pub async fn alert_router( alert: &ProbeAlert ) -> Result { if alert.url.starts_with("https://discord.com/api/webhooks") { return Ok("discord".to_string()); }...