zelda/backend/pkg/notifier/wechat.go

26 lines
442 B
Go
Raw Permalink Normal View History

2024-11-19 16:57:27 +08:00
package notifier
import "github.com/ycyxuehan/zelda/pkg/notifier/api"
type WeChat struct {
messageChan chan api.Message
accessToken string
}
func NewWeChat(token string, queueLength int)*WeChat{
if queueLength < 1 {
queueLength = 1
}
return &WeChat{
accessToken: token,
messageChan: make(chan api.Message, queueLength),
}
}
func (dt *WeChat)Run()error{
return nil
}
func (dt *WeChat)Send(msg api.Message)error{
return nil
}