-
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.
- 회원가입 성공에 대한 Success Code 정의 - Auth - SignUpUsecase 정의 - SignUpCommand 타입 파라미터 선언 - 정의한 API 구현
- Loading branch information
1 parent
448e280
commit 6e7f2a3
Showing
3 changed files
with
20 additions
and
0 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
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
src/main/java/sopt/makers/authentication/usecase/auth/port/in/SignUpUsecase.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 sopt.makers.authentication.usecase.auth.port.in; | ||
|
||
import sopt.makers.authentication.domain.auth.AuthPlatform; | ||
|
||
public interface SignUpUsecase { | ||
|
||
void signUp(SignUpCommand command); | ||
|
||
record SignUpCommand(String name, String phone, String authCode, AuthPlatform authPlatform) {} | ||
} |