NestJS - 서비스 및 컨트롤러
import { Injectable, NotFoundException } from '@nestjs/common';export interface PostModel { id: number; author: string; title: string; content: string; likeCount: number; commentCount: number;}let posts: PostModel[] = [ { id: 1, author: 'tester1', title: 'title1', content: 'content1', likeCount: 111, commentCount: 1111, }, { id: 2, author: 'tester2', title: 't..
2025. 2. 20.
최근댓글