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

org.sophon.module.sms.integration.config.SophonSmsClientAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package org.sophon.module.sms.integration.config;

import org.sophon.module.sms.integration.client.SmsClientFactory;
import org.sophon.module.sms.integration.client.impl.SmsClientFactoryImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 短信客户端工厂配置
 * @author moushaokun
 * @since time: 2023-03-13 10:53
 */
@Configuration
public class SophonSmsClientAutoConfiguration {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy