| 15 | |
| 16 | #[derive(Debug, Serialize)] |
| 17 | struct Question { |
| 18 | id: QuestionId, |
| 19 | title: String, |
| 20 | content: String, |
| 21 | tags: Option<Vec<String>>, |
| 22 | } |
| 23 | #[derive(Debug, Serialize)] |
| 24 | struct QuestionId(String); |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected