Skip to content

Commit 8335558

Browse files
committed
stuff
1 parent 3d7c2bb commit 8335558

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { Jbeyquiz } from './jbeyquiz.js';
5+
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
56

67
export const Quizzes = Symbol.for('Quizzes');
78

89
// Add your quiz provider here.
9-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, Jbeyquiz];
10+
const QUIZ_PROVIDERS = [
11+
AnthonyMaysQuiz,
12+
AnotherQuiz,
13+
MercedesMathewsQuiz,
14+
Jbeyquiz,
15+
];
1016

1117
@Module({
1218
providers: [

0 commit comments

Comments
 (0)