remove futility

This commit is contained in:
thinkgem
2018-05-29 21:56:05 +08:00
parent 78e27724af
commit 4b76a942cd

View File

@@ -1,25 +0,0 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.modules.config.task;
import org.springframework.context.annotation.Configuration;
/**
* 消息服务如果需要支持定时任务则要在作业管理里添加该任务msgLocalSendTask.execute();
* @author ThinkGem
* @version 2018年1月10日
*/
@Configuration
public class MsgTaskConfig {
// @Bean
// public MsgLocalSendTask msgLocalSendTask(){
// MsgLocalSendTask bean = new MsgLocalSendTask();
// bean.setSmsDemoSendService(new SmsDemoSendService());
// bean.setEmailSendService(new EmailSendService());
// bean.setWeixinSendService(new WeixinSendService());
// return bean;
// }
}