10 lines
200 B
Go
10 lines
200 B
Go
package google
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type AndroidPublisherClient interface {
|
|
GetProductPurchase(ctx context.Context, packageName string, productId string, token string) (*ProductPurchase, error)
|
|
}
|