package cn.stylefeng.roses.kernel.im.api.expander;
|
|
import cn.hutool.core.util.StrUtil;
|
import cn.stylefeng.roses.kernel.config.api.context.ConfigContext;
|
|
/**
|
* 短信相关的配置拓展
|
*/
|
public class ImConfigExpander {
|
|
public static String getRongCouldAppKey() {
|
return ConfigContext.me().getSysConfigValueWithDefault("RONG_CLOUD_APP_KEY", String.class, StrUtil.EMPTY);
|
}
|
|
public static String getRongCouldAppSecret() {
|
return ConfigContext.me().getSysConfigValueWithDefault("RONG_CLOUD_APP_SECRET", String.class, StrUtil.EMPTY);
|
}
|
|
}
|