1
0
mirror of synced 2026-04-19 16:15:30 +08:00

👽 AuthScope + 包说明

This commit is contained in:
yadong.zhang
2020-07-04 13:17:23 +08:00
parent 2abef3dc64
commit 162a16820d
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package me.zhyd.oauth.enums.scope;
/**
* 各个平台 scope 类的统一接口
*
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
* @version 1.0.0
* @since 1.15.7
*/
public interface AuthScope {
String getScope();
}

View File

@@ -0,0 +1,8 @@
/**
* 各个平台的授权范围
*
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
* @version 1.0.0
* @since 1.15.7
*/
package me.zhyd.oauth.enums.scope;