mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-24 21:24:42 +01:00
14 lines
227 B
Go
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
|
|
}
|