(
state: &DashboardState,
limit: i64,
)
| 50 | } |
| 51 | |
| 52 | pub(crate) async fn fetch_entities( |
| 53 | state: &DashboardState, |
| 54 | limit: i64, |
| 55 | ) -> Result<Vec<Value>, String> { |
| 56 | memory_queries::entity_rows(state, limit).await |
| 57 | } |
| 58 | |
| 59 | async fn trust_histogram(state: &DashboardState) -> Vec<Value> { |
| 60 | let Ok(rows) = memory_queries::trust_histogram_rows(state).await else { |
no test coverage detected