mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-24 22:54:43 +01:00
8 lines
113 B
Go
8 lines
113 B
Go
package commands
|
|
|
|
type Command interface {
|
|
CallName() string
|
|
GetRequestBody() []byte
|
|
SetToken(token string)
|
|
}
|