()
| 23 | |
| 24 | impl Store { |
| 25 | fn new() -> Self { |
| 26 | Store { |
| 27 | questions: Self::init(), |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | fn init() -> HashMap<QuestionId, Question> { |
| 32 | let file = include_str!("../question.json"); |
nothing calls this directly
no outgoing calls
no test coverage detected