init parser
This commit is contained in:
17
plati/client.go
Normal file
17
plati/client.go
Normal 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,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user