16 lines
212 B
Go
16 lines
212 B
Go
package vivo
|
|
|
|
type Pay struct {
|
|
AppId string
|
|
AppKey string
|
|
//AppSecret string
|
|
}
|
|
|
|
func New(cfg *Pay) (client *Pay) {
|
|
return &Pay{
|
|
AppId: cfg.AppId,
|
|
AppKey: cfg.AppKey,
|
|
//AppSecret: cfg.AppSecret,
|
|
}
|
|
}
|