diff --git a/src/app.module.ts b/src/app.module.ts index 7882561..49fb4c7 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -1,10 +1,11 @@ import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { TemplateService } from './templates/index'; +import { TemplateManager } from './templates/types'; @Module({ imports: [], controllers: [AppController], - providers: [TemplateService], + providers: [TemplateService, TemplateManager], }) export class AppModule {}