mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
333 B
12 lines
333 B
package dingtalk
|
|
|
|
import (
|
|
"godocms/pkg/dingtalk/payload"
|
|
"net/http"
|
|
)
|
|
|
|
// SendCorpConvMessage 发送工作通知
|
|
func (ding *DingTalk) SendCorpConvMessage(req *payload.CorpConvMessage) (rsp payload.CorpConvMessageResponse,
|
|
err error) {
|
|
return rsp, ding.Request(http.MethodPost, SendCorpConversationMessageKey, nil, req, &rsp)
|
|
}
|
|
|