Skip to main content

codetether_agent/browser/output/
content.rs

1use serde::Serialize;
2
3#[derive(Debug, Clone, Serialize)]
4pub struct TextContent {
5    pub text: String,
6}
7
8#[derive(Debug, Clone, Serialize)]
9pub struct HtmlContent {
10    pub html: String,
11}