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

This commit is contained in:
2025-07-04 16:14:47 -04:00
parent f702ecd8c9
commit b1bf4fd4d5
9 changed files with 31 additions and 26 deletions

View File

@@ -4,14 +4,15 @@ use std::str::FromStr;
use crate::modules::helm::chart::HelmChartScore;
pub fn grafana_helm_chart_score(ns: &str) -> HelmChartScore {
let values = format!(
let values = format!(
r#"
rbac:
namespaced: true
sidecar:
dashboards:
enabled: true
"#);
"#
);
HelmChartScore {
namespace: Some(NonBlankString::from_str(ns).unwrap()),