| 207 | #[derive(Debug, Deserialize)] |
| 208 | #[allow(dead_code)] |
| 209 | struct AfterToolInput { |
| 210 | #[serde(default)] |
| 211 | session_id: Option<String>, |
| 212 | #[serde(default)] |
| 213 | transcript_path: Option<String>, |
| 214 | #[serde(default)] |
| 215 | tool_name: Option<String>, |
| 216 | #[serde(default)] |
| 217 | tool_input: Option<serde_json::Value>, |
| 218 | #[serde(default)] |
| 219 | tool_response: Option<serde_json::Value>, |
| 220 | } |
| 221 | |
| 222 | // Gemini CLI Settings File Types |
| 223 |
nothing calls this directly
no outgoing calls
no test coverage detected