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 e72256e commit 86e5d47Copy full SHA for 86e5d47
lesson_10/libraries/src/loaders/loaders.module.ts
@@ -1,11 +1,16 @@
1
import { Module } from '@nestjs/common';
2
import { AnthonyMaysLoader } from './anthony_mays_loader.js';
3
import { DwightBlueLoader } from './cdbluejr_loader.js';
4
+import { XavierCruzLoader } from './xavier_cruz_loader.js';
5
6
export const Loaders = Symbol.for('Loaders');
7
8
// Add your quiz provider here.
-const LOADER_PROVIDERS = [AnthonyMaysLoader, DwightBlueLoader];
9
+const LOADER_PROVIDERS = [
10
+ AnthonyMaysLoader,
11
+ DwightBlueLoader,
12
+ XavierCruzLoader,
13
+];
14
15
@Module({
16
providers: [
0 commit comments