package paypal var client *Client type Client struct { ClientId string ClientSecret string } func init() { client = NewClient() } func NewClient() *Client { return &Client{ClientId: username, ClientSecret: password} }