16 lines
231 B
Go
16 lines
231 B
Go
package vivo
|
|
|
|
type Pay struct {
|
|
AppId string
|
|
AppKey string
|
|
AppSecret string
|
|
}
|
|
|
|
func New(appId, appKey, appSecret string) (client *Pay) {
|
|
return &Pay{
|
|
AppId: appId,
|
|
AppKey: appKey,
|
|
AppSecret: appSecret,
|
|
}
|
|
}
|