com.github.liuanxin.api.annotation.EnableApiInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-document Show documentation
Show all versions of api-document Show documentation
Collect api document, support to spring mvc
The newest version!
package com.github.liuanxin.api.annotation;
import com.github.liuanxin.api.web.DocumentController;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
* @see com.github.liuanxin.api.model.DocumentCopyright
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({DocumentController.class})
public @interface EnableApiInfo {
}