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 6cb8e29 commit 2163ca5Copy full SHA for 2163ca5
lesson_10/libraries/src/loaders/loaders.module.ts
@@ -1,10 +1,10 @@
1
import { Module } from '@nestjs/common';
2
import { AnthonyMaysLoader } from './anthony_mays_loader.js';
3
-
+import { ShawnDunsmoreLoader } from './shawn_dunsmore_loader.js';
4
export const Loaders = Symbol.for('Loaders');
5
6
// Add your quiz provider here.
7
-const LOADER_PROVIDERS = [AnthonyMaysLoader];
+const LOADER_PROVIDERS = [AnthonyMaysLoader, ShawnDunsmoreLoader];
8
9
@Module({
10
providers: [
0 commit comments