Skip to content

Commit

Permalink
[#110] style: spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomo committed Sep 14, 2023
1 parent 7604c7b commit 8ff5d96
Showing 1 changed file with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@
@RequiredArgsConstructor
public class ExampleController {

@GetMapping("/health")
@Operation(summary = "헬스체크")
public void health() {
// health check
}
@GetMapping("/health")
@Operation(summary = "헬스체크")
public void health() {
// health check
}

@GetMapping("/global")
@DevelopOnly
@Operation(summary = "글로벌 ( 인증 , aop, 서버 내부 오류등) 관련 에러 코드 나열")
@ApiErrorCodeExample(GlobalErrorCode.class)
public void getGlobalErrorCode() {}
@GetMapping("/global")
@DevelopOnly
@Operation(summary = "글로벌 ( 인증 , aop, 서버 내부 오류등) 관련 에러 코드 나열")
@ApiErrorCodeExample(GlobalErrorCode.class)
public void getGlobalErrorCode() {}

@GetMapping("/user")
@DevelopOnly
@Operation(summary = "유저 도메인 관련 에러 코드 나열")
@ApiErrorCodeExample(UserErrorCode.class)
public void getUserErrorCode() {}
@GetMapping("/user")
@DevelopOnly
@Operation(summary = "유저 도메인 관련 에러 코드 나열")
@ApiErrorCodeExample(UserErrorCode.class)
public void getUserErrorCode() {}

@GetMapping("/kakao")
@DevelopOnly
@Operation(summary = "카카오 에러 코드 나열")
@ApiErrorCodeExample(KakaoOauthErrorCode.class)
public void getKakaoOauthErrorCode() {}
@GetMapping("/kakao")
@DevelopOnly
@Operation(summary = "카카오 에러 코드 나열")
@ApiErrorCodeExample(KakaoOauthErrorCode.class)
public void getKakaoOauthErrorCode() {}
}

0 comments on commit 8ff5d96

Please sign in to comment.