@Get(':id') @ApiOperation({ summary: '이벤트 상세 조회' }) @ApiResponse({ status: 200, description: '이벤트 상세 조회 성공', type: Event, }) @ApiResponse({ status: 404, description: '이벤트를 찾을 수 없음' }) findById(@Param('id', ParseIntPipe) id: number): Promise { return this.eventsService.findById(id); } @Get('venues') @ApiOperation({ summary: '공연장 목록 조회 (seat-service 연동)' }) async fetchVenueLis..