We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7c2bb commit 8335558Copy full SHA for 8335558
lesson_03/quiz/src/quizzes/quizzes.module.ts
@@ -2,11 +2,17 @@ import { Module } from '@nestjs/common';
2
import { AnotherQuiz } from './another_quiz.js';
3
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
4
import { Jbeyquiz } from './jbeyquiz.js';
5
+import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
6
7
export const Quizzes = Symbol.for('Quizzes');
8
9
// Add your quiz provider here.
-const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, Jbeyquiz];
10
+const QUIZ_PROVIDERS = [
11
+ AnthonyMaysQuiz,
12
+ AnotherQuiz,
13
+ MercedesMathewsQuiz,
14
+ Jbeyquiz,
15
+];
16
17
@Module({
18
providers: [
0 commit comments