Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f675a12790 |
@@ -8,3 +8,13 @@ type AuthLoginRequestDTO struct {
|
|||||||
type AuthLoginResponseDTO struct {
|
type AuthLoginResponseDTO struct {
|
||||||
Token string `json:"jwt_token"`
|
Token string `json:"jwt_token"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type AuthRegisterRequestDTO struct {
|
||||||
|
Email string `json:"email"`
|
||||||
|
Username string `json:"username"`
|
||||||
|
Password string `json:"password"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AuthRegisterResponseDTO struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user