@arsendoman/book-publisher-store
Version:
A Nest.js package for book publishing and storing
27 lines (25 loc) • 923 B
text/typescript
import { Module } from '@nestjs/common';
import { ProfileService } from '../../application/services/profiles/profiles.service';
import { ProfileController } from './profiles.controller';
import { DataServiceModule } from 'src/dataservices/data-service.module';
import { ProfileMapperService } from '../../application/mapping/profile.mapper.service';
import { RolesService } from '../../application/services/roles/roles.service';
import { RabbitMQModule } from '@golevelup/nestjs-rabbitmq';
export class ProfileModule {}