package plati import "net/http" type Client struct { httpCli *http.Client token string sellerID int } func New() *Client { return &Client{ httpCli: &http.Client{}, token: "7C731D89FED84B479B89F24F81BB8AF2", sellerID: 1209592, } }