gosdk/qyweixin/app_customer.go

12 lines
151 B
Go
Raw Normal View History

2024-01-23 11:44:55 +08:00
package qyweixin
type AppCustomer struct {
App
}
func NewAppCustomer(cfg *AppConfig) *AppCustomer {
return &AppCustomer{
App: *NewApp(cfg),
}
}