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

xyz.migoo.framework.sms.config.MiGooSmsAutoConfiguration Maven / Gradle / Ivy

package xyz.migoo.framework.sms.config;

import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.context.annotation.Bean;
import xyz.migoo.framework.sms.core.client.SmsClientFactory;
import xyz.migoo.framework.sms.core.client.SmsClientFactoryImpl;

/**
 * 短信配置类
 *
 * @author xioami
 */
@AutoConfiguration
public class MiGooSmsAutoConfiguration {

    @Bean
    public SmsClientFactory smsClientFactory() {
        return new SmsClientFactoryImpl();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy