im.shs.tick.swagger.annotation.EnableSwagger2 Maven / Gradle / Ivy
The newest version!
package im.shs.tick.swagger.annotation;
import im.shs.tick.swagger.config.SwaggerAutoConfiguration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
* swagger
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({SwaggerAutoConfiguration.class})
public @interface EnableSwagger2 {
}