| 21 | |
| 22 | #[derive(Serialize, Deserialize, Debug, Clone)] |
| 23 | struct QuestionAnswer { |
| 24 | id: i32, |
| 25 | title: String, |
| 26 | content: String, |
| 27 | tags: Option<Vec<String>>, |
| 28 | } |
| 29 | |
| 30 | #[derive(Serialize, Deserialize, Debug, Clone)] |
| 31 | struct Token(String); |
nothing calls this directly
no outgoing calls
no test coverage detected