mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-01 04:08:16 +00:00
20 lines
807 B
TypeScript
20 lines
807 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DadosferaLogger } from '@dadosfera/dadosfera-logs';
|
|
|
|
import { PlatformApiController } from './platform-api.controller';
|
|
import { PlatformApiService } from './platform-api.service';
|
|
import { ElasticsearchModule } from '../../services/elasticsearch';
|
|
import { DynamoDBModule } from '../../services/dynamodb';
|
|
import { CustomersModule } from '../customers/customers.module';
|
|
import { CatalogModule } from '../catalog/catalog.module';
|
|
import { InputsModule } from '../inputs/inputs.module';
|
|
|
|
@Module({
|
|
imports: [ElasticsearchModule, DynamoDBModule, CustomersModule, CatalogModule, InputsModule],
|
|
controllers: [PlatformApiController],
|
|
providers: [PlatformApiService, DadosferaLogger],
|
|
exports: [PlatformApiService],
|
|
})
|
|
export class PlatformApiModule {}
|