()
| 56 | } |
| 57 | |
| 58 | async fn get_connections() -> Json<serde_json::Value> { |
| 59 | Json(json!([])) |
| 60 | } |
| 61 | |
| 62 | async fn sync_thread(Json(request): Json<SyncThreadRequest>) -> Json<serde_json::Value> { |
| 63 | let thread_id = if let Some(Some(thread_meta)) = request.thread_metas.first() |
nothing calls this directly
no outgoing calls
no test coverage detected