()
| 58 | } |
| 59 | |
| 60 | fn init() -> HashMap<QuestionId, Question> { |
| 61 | let file = include_str!("../questions.json"); |
| 62 | serde_json::from_str(file).expect("can't read questions.json") |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | #[derive(Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected