paypale/paypal.go
Alexander Plutov a4a6af6695 Initial types
2015-10-14 12:30:28 +07:00

17 lines
288 B
Go

package paypalsdk
import (
"net/http"
)
// NewClient returns new Client struct
func NewClient(clientID string, secret string, APIBase string) (*Client, error) {
return &Client{
&http.Client{},
clientID,
secret,
APIBase,
nil,
}, nil
}