Files
llmx/codex-rs/protocol/src/message_history.rs
2025-08-15 12:44:40 -07:00

10 lines
190 B
Rust

use serde::Deserialize;
use serde::Serialize;
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct HistoryEntry {
pub session_id: String,
pub ts: u64,
pub text: String,
}