package com.fanruan.fs.s3.repository; import com.fr.intelli.record.Focus; import com.fr.io.base.provider.RepositoryFactoryProvider; import com.fr.io.fun.AbstractRepositoryFactoryProvider; import com.fanruan.fs.s3.repository.core.S3Config; import com.fanruan.fs.s3.repository.core.S3RepositoryFactory; import com.fr.record.analyzer.EnableMetrics; /** * @author richie * @version 10.0 * Created by richie on 2020/6/15 */ @EnableMetrics public class S3FactoryProvider extends AbstractRepositoryFactoryProvider { private static final S3RepositoryFactory factory = new S3RepositoryFactory(); @Override @Focus(id="com.fanruan.fs.s3.repository", text="") public RepositoryFactoryProvider getFactory() { return factory; } }