add parsing sumpays
All checks were successful
Build and push image / deploy (push) Successful in 1m44s

This commit is contained in:
2023-12-27 00:15:55 +03:00
parent c60045c47b
commit 3bbc6a0baa
9 changed files with 308 additions and 42 deletions

View File

@ -6,16 +6,18 @@ import (
)
type Client struct {
httpClis []*http.Client
token string
sellerID int
httpClis []*http.Client
token string
sellerID int
guidAgent string
}
func New(clients []*http.Client) *Client {
return &Client{
httpClis: clients,
token: "7C731D89FED84B479B89F24F81BB8AF2",
sellerID: 1209592,
httpClis: clients,
token: "7C731D89FED84B479B89F24F81BB8AF2",
sellerID: 1209592,
guidAgent: "98232A21641B4DF0B13FE96A48CCAD9E",
}
}