Proeycto de images-worker creado
This commit is contained in:
15
mvp/image-worker/src/app.module.ts
Normal file
15
mvp/image-worker/src/app.module.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ConfigModule } from '@nestjs/config';
|
||||
import { WebhookModule } from './webhook/webhook.module';
|
||||
import { PipelineModule } from './pipeline/pipeline.module';
|
||||
import { ReformixModule } from './reformix/reformix.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
ConfigModule.forRoot({ isGlobal: true }),
|
||||
WebhookModule,
|
||||
PipelineModule,
|
||||
ReformixModule,
|
||||
],
|
||||
})
|
||||
export class AppModule {}
|
||||
Reference in New Issue
Block a user