(counts: &mut BTreeMap<(String, String), i64>, kind: &str, category: &str)
| 386 | } |
| 387 | |
| 388 | fn increment_usage_count(counts: &mut BTreeMap<(String, String), i64>, kind: &str, category: &str) { |
| 389 | *counts |
| 390 | .entry((kind.to_string(), category.to_string())) |
| 391 | .or_default() += 1; |
| 392 | } |
| 393 | |
| 394 | async fn usage_summary( |
| 395 | conn: Option<&libsql::Connection>, |
no test coverage detected