-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] S3 Bucket 폴더 이름 static 변수로 분리해서 추가
- Loading branch information
1 parent
79b59c0
commit 2bee54b
Showing
2 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...olmateServer/src/main/java/com/nonsoolmate/nonsoolmateServer/external/aws/FolderName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.nonsoolmate.nonsoolmateServer.external.aws; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class FolderName { | ||
public static final String EXAM_ANSWER_FOLDER_NAME = "exam-answer/"; | ||
public static final String EXAM_RESULT_FOLDER_NAME = "exam-result/"; | ||
public static final String EXAM_SHEET_FOLDER_NAME = "exam-sheet/"; | ||
} |