Refactor grouping

This commit is contained in:
2026-03-28 11:20:16 -07:00
parent 9967e066bb
commit 5527b61d39
40 changed files with 466 additions and 630 deletions

View File

@@ -44,9 +44,9 @@ async fn pile_value_to_api(
PileValue::I64(n) => Ok(ApiValue::Number(n.into())),
PileValue::Null => Ok(ApiValue::Null),
PileValue::Blob { mime, .. } => Ok(ApiValue::Binary {
PileValue::Binary(x) => Ok(ApiValue::Binary {
binary: true,
mime: mime.to_string(),
mime: x.mime().to_string(),
}),
PileValue::Array(arr) => {