20 lines
377 B
Go
20 lines
377 B
Go
package etsy
|
|
|
|
//go:generate oapi-codegen -package generated_client -o generated_client/client.go openapi.3.0.2.json
|
|
|
|
const (
|
|
etsyAPIKeystring = "38ncokqh0jih5jshfk8iv4n5"
|
|
etsyAPISharedSecret = "jaaw0tyizf"
|
|
)
|
|
|
|
func GetEtsyAPIKeystring() string {
|
|
return etsyAPIKeystring
|
|
}
|
|
|
|
func GetEtsyAPISharedSecret() string {
|
|
return etsyAPISharedSecret
|
|
}
|
|
|
|
func requestAnAuthCode() {
|
|
}
|