封装的方法类

This commit is contained in:
Yun
2023-09-16 20:14:20 +08:00
commit 1bbc7db405
59 changed files with 3671 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package wecom
type wecom struct{}
// 企业微信
const (
WeComHost string = ""
)
func NewWeCom() *wecom {
return &wecom{}
}