]> git.frustrated-labs.net Git - open-the-box.git/commitdiff
feat: add more questions
authorAlexander Goussas <[email protected]>
Sun, 28 Jun 2026 16:23:48 +0000 (11:23 -0500)
committerAlexander Goussas <[email protected]>
Sun, 28 Jun 2026 16:23:48 +0000 (11:23 -0500)
question_repository.cpp

index f8510466437819e63723685c1745d463614b5207..7a0cafb2ac7116bbedad2ab7ede92557aaab1051 100644 (file)
@@ -1,9 +1,15 @@
 #include "question_repository.hpp"
 
 // TODO: Implement an external provider for questions.
-static std::vector<Question> questions
-    = { "What does your morning routine look like?",
-        "What do you like the most about your job?" };
+static std::vector<Question> questions = { "What does your morning routine look like?",
+                                           "What do you like the most about your job?",
+                                           "What is life in your country like?",
+                                           "What are your hobbies?",
+                                           "What do you do for a living?",
+                                           "Why are you learning X language?",
+                                           "Where have you traveled to?",
+                                           "What is your favourite food?",
+                                           "What kind of books do you like reading?" };
 
 std::vector<Question> InMemoryQuestionRepository::list_questions() noexcept
 {