()
| 29 | } |
| 30 | |
| 31 | fn init() -> HashMap<QuestionId, Question> { |
| 32 | let file = include_str!("../question.json"); |
| 33 | serde_json::from_str(file).expect("can't read questions.json") |
| 34 | } |
| 35 | |
| 36 | |
| 37 | fn add_question(mut self, question: Question) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected