feat: wecom curd

This commit is contained in:
zzw
2026-08-31 11:10:15 +08:00
parent 53d203ee14
commit d618ac32b0
37 changed files with 2707 additions and 33 deletions
+14
View File
@@ -0,0 +1,14 @@
package client
import (
"lone-services/pkg/utils"
"lone-services/pkg/wecom/auth"
"lone-services/pkg/wecom/user"
)
func NewContactClient() *user.Client {
return user.NewClient(auth.NewClient(
utils.GetConfigString("wecom.corp_id"),
utils.GetConfigString("wecom.contact_secret"),
))
}