mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 16:44:54 +00:00
feat: upload document to oci bucket
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
import { MiddlewareConsumer, Module } from '@nestjs/common';
|
||||
import { ConfigModule, ConfigService } from '@nestjs/config';
|
||||
import { APP_FILTER, APP_PIPE } from '@nestjs/core';
|
||||
import { ClientProxyFactory, Transport } from '@nestjs/microservices';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { I18nMiddleware, I18nModule } from 'nestjs-i18n';
|
||||
import { LoggerModule } from 'nestjs-pino';
|
||||
@ -10,6 +9,7 @@ import { buildConfigOptions, buildLoggerOptions, buildTypeormOptions } from './c
|
||||
import { buildI18nOptions } from './core/module-options/i18n-options';
|
||||
import { buildValidationPipe } from './core/pipes';
|
||||
import { migrations } from './db';
|
||||
import { DocumentModule } from './document/document.module';
|
||||
import { HealthModule } from './health/health.module';
|
||||
@Module({
|
||||
controllers: [],
|
||||
@ -26,6 +26,9 @@ import { HealthModule } from './health/health.module';
|
||||
}),
|
||||
I18nModule.forRoot(buildI18nOptions()),
|
||||
HealthModule,
|
||||
|
||||
// Application Modules
|
||||
DocumentModule,
|
||||
],
|
||||
providers: [
|
||||
// Global Pipes
|
||||
|
||||
Reference in New Issue
Block a user