(
state: &DashboardState,
query: &str,
limit: i64,
)
| 42 | } |
| 43 | |
| 44 | pub(crate) async fn fetch_facts( |
| 45 | state: &DashboardState, |
| 46 | query: &str, |
| 47 | limit: i64, |
| 48 | ) -> Result<Vec<Value>, String> { |
| 49 | memory_queries::fact_rows(state, query, limit).await |
| 50 | } |
| 51 | |
| 52 | pub(crate) async fn fetch_entities( |
| 53 | state: &DashboardState, |
no test coverage detected