style: cargo fmt after Phase A

Whitespace + import-grouping fixups in the 9 SDK modules touched by
F-Q-002. No behavior change.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-06-07 20:02:19 +02:00
parent ae5cf80426
commit 6f2bd3e949
8 changed files with 76 additions and 41 deletions

View File

@@ -81,8 +81,9 @@ pub(super) fn register(engine: &mut RhaiEngine, services: &Services, cx: Arc<Sdk
let (cursor, limit) = parse_list_opts(&opts)?;
let svc = svc.clone();
let cx = cx.clone();
let page: SecretsListPage =
block_on("secrets", async move { svc.list(&cx, cursor.as_deref(), limit).await })?;
let page: SecretsListPage = block_on("secrets", async move {
svc.list(&cx, cursor.as_deref(), limit).await
})?;
Ok(list_page_to_map(page))
},
);
@@ -130,4 +131,3 @@ fn list_page_to_map(page: SecretsListPage) -> Map {
fn runtime_err(msg: &str) -> Box<EvalAltResult> {
EvalAltResult::ErrorRuntime(msg.into(), rhai::Position::NONE).into()
}