Files
go-ebay/request.go
2018-10-16 22:03:50 +01:00

14 lines
227 B
Go

package ebay
import (
"github.com/cubixle2/go-ebay/commands"
"github.com/cubixle2/go-ebay/config"
)
const xmlns = "urn:ebay:apis:eBLBaseComponents"
type Request struct {
Config *config.Config
Command commands.Command
}