28 lines
786 B
TypeScript
28 lines
786 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommunitiesService } from './communities.service';
|
|
import { CommunitiesController } from './communities.controller';
|
|
import { MongooseModule } from '@nestjs/mongoose';
|
|
import { ClientsModule, Transport } from "@nestjs/microservices";
|
|
|
|
import { Community, CommunitySchema } from '../schemas/community.schema';
|
|
|
|
|
|
@Module({
|
|
imports: [
|
|
ClientsModule.register([
|
|
{
|
|
name: "SERVICIO_USUARIOS",
|
|
transport: Transport.TCP,
|
|
options: {
|
|
host: "127.0.0.1",
|
|
port: 3001
|
|
}
|
|
}
|
|
]),
|
|
MongooseModule.forFeature([{ name: Community.name, schema: CommunitySchema }]),
|
|
],
|
|
controllers: [CommunitiesController],
|
|
providers: [CommunitiesService]
|
|
})
|
|
export class CommunitiesModule {}
|