Skip to content

Commit

Permalink
#33 [feat] : 자동매매 등록 성공 Enum 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbang105 committed Jun 10, 2024
1 parent 53c8a79 commit c86cbfa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public enum SuccessStatus implements BaseCode {
SUCCESS_ADD_UPBIT_KEYS(HttpStatus.CREATED, "201", "업비트 키 등록에 성공했습니다"),
// Chart
SUCCESS_GET_OHLCV_CHART(HttpStatus.OK, "200", "OHLCV 차트 조회에 성공했습니다."),
SUCCESS_GET_ALL_CHART_OPTIONS(HttpStatus.OK, "200", "차트 선택 지표 목록 조회에 성공했습니다.");
SUCCESS_GET_ALL_CHART_OPTIONS(HttpStatus.OK, "200", "차트 선택 지표 목록 조회에 성공했습니다."),
// Trading
SUCCESS_START_TRADING(HttpStatus.CREATED, "201", "자동매매 등록에 성공했습니다.");

private final HttpStatus httpStatus;
private final String code;
Expand Down

0 comments on commit c86cbfa

Please sign in to comment.