Implement Auth

This commit is contained in:
hou27
2022-06-10 22:17:55 +09:00
parent c51cf8b525
commit f307710223
14 changed files with 191 additions and 87 deletions

View File

@@ -0,0 +1,8 @@
package demo.api.jwt.dtos;
import lombok.AllArgsConstructor;
@AllArgsConstructor
public class TokenDto {
private String access_token;
}