Files
utils/tencentx/wecomx/wecom.go
T

14 lines
131 B
Go
Raw Normal View History

2023-09-16 20:14:20 +08:00
package wecom
type wecom struct{}
// 企业微信
const (
WeComHost string = ""
)
func NewWeCom() *wecom {
return &wecom{}
}