From b97c58bc3418799b0bba7a813eae04e825d51c77 Mon Sep 17 00:00:00 2001 From: tahahawa Date: Fri, 11 Jul 2025 10:12:25 -0400 Subject: [PATCH] fix example --- examples/rust/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/rust/src/main.rs b/examples/rust/src/main.rs index 92bcbd0..0b36621 100644 --- a/examples/rust/src/main.rs +++ b/examples/rust/src/main.rs @@ -31,7 +31,9 @@ async fn main() { Box::new(ContinuousDelivery { application: application.clone(), }), // TODO add monitoring, backups, multisite ha, etc - Box::new(Monitoring {}), + Box::new(Monitoring { + application: application.clone(), + }), ], application, };