(State(state): State<Arc<ServerState>>)
| 3771 | } |
| 3772 | |
| 3773 | async fn clear_prompt(State(state): State<Arc<ServerState>>) -> Result<Json<bool>> { |
| 3774 | enqueue_tui_request(&state, "/tui/clear-prompt", serde_json::json!({})).await; |
| 3775 | Ok(Json(true)) |
| 3776 | } |
| 3777 | |
| 3778 | async fn open_help(State(state): State<Arc<ServerState>>) -> Result<Json<bool>> { |
| 3779 | enqueue_tui_request( |
nothing calls this directly
no test coverage detected