Files
platiparser/plati/client.go
2023-12-20 00:36:49 +03:00

18 lines
252 B
Go

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,
}
}