1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.qianwen.core.social.props;
|
| import com.google.common.collect.Maps;
| import java.util.Map;
| import me.zhyd.oauth.config.AuthConfig;
|
|
| public interface ISocialProperties {
| Map<String, AuthConfig> getOauth();
|
| default Map<String, String> getAlias() {
| return Maps.newHashMap();
| }
| }
|
|