Files
lone-services/pkg/wechat/auth/client.go
T
2026-09-02 17:37:12 +08:00

14 lines
172 B
Go

package auth
type Client struct {
AppID string
Secret string
}
func NewClient(appID, secret string) *Client {
return &Client{
AppID: appID,
Secret: secret,
}
}