Merge pull request #4 from xkcoding/patch-3

gitignore文件更新,AuthConfig 添加 set 方法支持作为外部配置类
This commit is contained in:
yadong.zhang 2019-05-20 14:36:43 +08:00 committed by GitHub
commit 2abca4f10f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -26,3 +26,5 @@ hs_err_pid*
.idea
*.iml
*.sh
target

View File

@ -1,9 +1,6 @@
package me.zhyd.oauth.config;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.*;
/**
* JustAuth配置类
@ -12,6 +9,7 @@ import lombok.NoArgsConstructor;
* @version 1.0
* @since 1.8
*/
@Setter
@Getter
@Builder
@NoArgsConstructor