first commit

This commit is contained in:
yy
2026-09-11 17:34:14 +08:00
commit dfb943919d
622 changed files with 26659 additions and 0 deletions
@@ -0,0 +1,16 @@
package com.metalloop.common.auth.config;
import org.springframework.util.Assert;
/**
* 认证服务器配置器适配器
*
* @author zhaowenhao
* @since 2023-03-19
*/
public class AuthServerConfigurerAdapter implements AuthServerConfigurer {
@Override
public void configure(AuthServerEndpointsConfigurer configurer) throws Exception {
Assert.notNull(configurer, "认证服务器端点配置器不能为空");
}
}