| 9 | |
| 10 | #[derive(Debug, Clone)] |
| 11 | pub struct Store { |
| 12 | pub questions: Arc<RwLock<HashMap<QuestionId, Question>>>, |
| 13 | pub answers: Arc<RwLock<HashMap<AnswerId, Answer>>>, |
| 14 | } |
| 15 | |
| 16 | impl Store { |
| 17 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected