Skip to content

Commit 86e5d47

Browse files
committed
Update:loaders.module.ts
1 parent e72256e commit 86e5d47

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lesson_10/libraries/src/loaders/loaders.module.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
import { Module } from '@nestjs/common';
22
import { AnthonyMaysLoader } from './anthony_mays_loader.js';
33
import { DwightBlueLoader } from './cdbluejr_loader.js';
4+
import { XavierCruzLoader } from './xavier_cruz_loader.js';
45

56
export const Loaders = Symbol.for('Loaders');
67

78
// Add your quiz provider here.
8-
const LOADER_PROVIDERS = [AnthonyMaysLoader, DwightBlueLoader];
9+
const LOADER_PROVIDERS = [
10+
AnthonyMaysLoader,
11+
DwightBlueLoader,
12+
XavierCruzLoader,
13+
];
914

1015
@Module({
1116
providers: [

0 commit comments

Comments
 (0)