SimpleCloudNotifier/scnserver/google/client.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)
}