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 5bf25c7 commit c255235Copy full SHA for c255235
lesson_10/libraries/src/loaders/loaders.module.ts
@@ -1,15 +1,13 @@
1
import { Module } from '@nestjs/common';
2
import { HummadTanweerLoader } from './hummad_tanweer_loader.js';
3
import { AnthonyMaysLoader } from './anthony_mays_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.
9
-lesson_10
10
-const LOADER_PROVIDERS = [HummadTanweerLoader, AnthonyMaysLoader];
11
-const LOADER_PROVIDERS = [AnthonyMaysLoader, XavierCruzLoader];
12
-main
+
+const LOADER_PROVIDERS = [AnthonyMaysLoader, HummadTanweerLoader];
13
14
@Module({
15
providers: [
0 commit comments