forked from kidgrow-microservices-platform

zhaoxiaohao
2021-01-26 f7c5db77d404397bf9c35ab1ddc7e03639d131a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.kidgrow.jwt.server;
 
import com.kidgrow.jwt.server.configuration.AuthServerConfiguration;
import org.springframework.context.annotation.Import;
 
import java.lang.annotation.*;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: 启用 认证服务 的服务端配置<br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/11 14:00 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Import(AuthServerConfiguration.class)
@Documented
@Inherited
public @interface EnableAuthServer {
}