fix example
Some checks failed
Run Check Script / check (pull_request) Failing after 2m53s

This commit is contained in:
tahahawa 2025-07-11 10:12:25 -04:00
parent 694f0dc045
commit b97c58bc34

View File

@ -31,7 +31,9 @@ async fn main() {
Box::new(ContinuousDelivery { Box::new(ContinuousDelivery {
application: application.clone(), application: application.clone(),
}), // TODO add monitoring, backups, multisite ha, etc }), // TODO add monitoring, backups, multisite ha, etc
Box::new(Monitoring {}), Box::new(Monitoring {
application: application.clone(),
}),
], ],
application, application,
}; };