| 22 | |
| 23 | #[derive(Deserialize, Serialize)] |
| 24 | pub struct TodoItem { |
| 25 | pub title: String, |
| 26 | pub content: String, |
| 27 | } |
| 28 | |
| 29 | pub fn create_todo_item(title: &str, content: &str) -> TodoItem { |
| 30 | TodoItem { |
nothing calls this directly
no outgoing calls
no test coverage detected