Skip to content

Commit 3257735

Browse files
committed
♻️Refator: joinClubService 인터페이스 주입
1 parent 0cc5b10 commit 3257735

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/be/sportizebe/domain/notification/controller/JoinClubRequestController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.be.sportizebe.domain.notification.controller;
22

33
import com.be.sportizebe.domain.notification.dto.response.JoinClubRequestResponse;
4-
import com.be.sportizebe.domain.notification.service.JoinClubRequestServiceImpl;
4+
import com.be.sportizebe.domain.notification.service.JoinClubRequestService;
55
import com.be.sportizebe.global.cache.dto.UserAuthInfo;
66
import com.be.sportizebe.global.response.BaseResponse;
77
import io.swagger.v3.oas.annotations.Operation;
@@ -21,7 +21,7 @@
2121
@Tag(name = "join-request", description = "동호회 가입 관련 API")
2222
public class JoinClubRequestController {
2323

24-
private final JoinClubRequestServiceImpl joinClubRequestService;
24+
private final JoinClubRequestService joinClubRequestService;
2525

2626
@PostMapping("/{clubId}/join")
2727
@Operation(summary = "가입 신청", description = "동호회에 가입을 신청합니다. 동호회장에게 알림이 전송됩니다.")

0 commit comments

Comments
 (0)