Skip to content

Commit

Permalink
#29 - ExportFileType: 강의에서 구현하지 않은 부분 주석 처리
Browse files Browse the repository at this point in the history
json, sql_insert는 너무 유용한 출력 형식이지만
강의 분량 문제로 강의 시간에 구현하지 않음.
강의 밖에서 별도 이슈로 다룰 예정.
구현할 때까지 오픈하지 않고 주석 처리하여 가림.
  • Loading branch information
djkeh committed Aug 7, 2024
1 parent 7b41ce9 commit f031610
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package uno.fastcampus.testdata.domain.constant;

public enum ExportFileType {
CSV, TSV, JSON, SQL_INSERT;
CSV,
TSV,
// JSON, // TODO: 강의 시간 상 구현을 생략함. 구현하면 TODO 삭제
// SQL_INSERT, // TODO: 강의 시간 상 구현을 생략함. 구현하면 TODO 삭제
;
}

0 comments on commit f031610

Please sign in to comment.