posts.module.ts 317 B
import { Module } from '@nestjs/common';
import { HttpModule } from '@nestjs/axios';
import { PostsController } from './posts.controller';
import { PostsService } from './posts.service';
@Module({
imports: [HttpModule],
controllers: [PostsController],
providers: [PostsService],
})
export class PostsModule {}