@arsendoman/book-publisher-store
Version:
A Nest.js package for book publishing and storing
13 lines (11 loc) • 571 B
text/typescript
import { Module } from '@nestjs/common';
import { DataServiceModule } from 'src/dataservices/data-service.module';
import { BookCommentsController } from './book.comments.controller';
import { BookCommentMapperService } from '../../application/mapping/book.comment.mapper.service';
import { BooksCommentsService } from '../../application/services/books/comments/book.comments.service';
export class BookCommentsModule {}