| 254 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 255 | #[serde(rename_all = "camelCase")] |
| 256 | pub struct Insert { |
| 257 | path: String, |
| 258 | content: String, |
| 259 | insert_line: Option<u32>, |
| 260 | } |
| 261 | |
| 262 | impl Insert { |
| 263 | async fn execute(&self, path: impl AsRef<Path>) -> Result<(), ToolExecutionError> { |
no outgoing calls