j-agent 12.10.62

Agent engine library for j-cli and j-gui
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

/// Todo 项目数据结构
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct TodoItem {
    pub id: String,
    pub content: String,
    pub status: String, // "pending" | "in_progress" | "completed" | "cancelled"
}