import { Module } from '@nestjs/common' import { PostsController } from './posts.controller' import { PostsService } from './posts.service' import { Posts } from './posts.entity' import { TypeOrmModule } from '@nestjs/typeorm' @Module({ imports: [TypeOrmModule.forFeature([Posts])], controllers: [PostsController], providers: [PostsService] }) export class PostsModule {}