1 Star 0 Fork 53

jo-y / smscode

forked from xluohome / smscode 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
f_demo.go 294 Bytes
一键复制 编辑 原始数据 按行查看 历史
xluo 提交于 2017-05-27 23:28 . v0.16 beta
//测试用 短信通道供应商
package main
import (
"fmt"
"time"
)
type Demov struct {
sms *SMS
}
func init() {
SenderMap["demo"] = func() Sender {
return &Demov{}
}
}
func (y *Demov) Send(sms *SMS) error {
time.Sleep(5 * time.Second)
fmt.Printf("发送成功")
return nil
}
Go
1
https://gitee.com/jo_y/smscode.git
git@gitee.com:jo_y/smscode.git
jo_y
smscode
smscode
master

搜索帮助