Skip to content

Commit dff0cf5

Browse files
committed
fmt
1 parent 2b6cded commit dff0cf5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/agent-client-protocol-rmcp/src/builder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,9 @@ impl<R: Role> ServerHandler for McpServerConnection<R> {
329329
if has_structured_output {
330330
Ok(CallToolResult::structured(result))
331331
} else {
332-
Ok(CallToolResult::success(vec![rmcp::model::ContentBlock::text(
333-
result.to_string(),
334-
)]))
332+
Ok(CallToolResult::success(vec![
333+
rmcp::model::ContentBlock::text(result.to_string()),
334+
]))
335335
}
336336
}
337337
Err(error) => Err(to_rmcp_error(error)),

0 commit comments

Comments
 (0)