테스트 시리즈

테스트 게시글

2025년 10월 28일1분0
test
article

Heading 2

Heading 3

Heading 4


  • ul

  • ul

  1. ol

  2. ol


image.png


Blockquote


code
import { CallHandler, ExecutionContext, Injectable, NestInterceptor } from '@nestjs/common';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';

@Injectable()
export class TransformInterceptor implements NestInterceptor {
  intercept(_context: ExecutionContext, next: CallHandler): Observable<unknown> {
    return next.handle().pipe(map(data => ({ data })));
  }
}

댓글 1

ME

댓글을 작성하려면 로그인이 필요합니다

i
imkdw
2025년 10월 28일
테스트 댓글zz