init parser

This commit is contained in:
2023-12-20 00:36:49 +03:00
commit 872217d845
9 changed files with 477 additions and 0 deletions

17
plati/client.go Normal file
View File

@ -0,0 +1,17 @@
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,
}
}