All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plus.easydo.starter.file.annotation.EnableMinioFileStore Maven / Gradle / Ivy

The newest version!
package plus.easydo.starter.file.annotation;

import org.springframework.context.annotation.Import;
import plus.easydo.starter.file.minio.config.MinioAutoConfiguration;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author yuzhanfeng
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Import(MinioAutoConfiguration.class)
public @interface EnableMinioFileStore {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy