store.go 192 B

12345678910
  1. package pricing
  2. import (
  3. "context"
  4. )
  5. type PricingStore interface {
  6. GetPricingSet(ctx context.Context) (*PricingSet, error)
  7. SetPricingSet(ctx context.Context, pricing *PricingSet) error
  8. }