func()

in store/memory.go [24:35]


func (m *MemoryStore) All(ctx context.Context, next *string) (types.ProductRange, error) {
	productRange := types.ProductRange{
		Products: []types.Product{},
		Next:     aws.String("random next string"),
	}

	for _, v := range m.storage {
		productRange.Products = append(productRange.Products, v)
	}

	return productRange, nil
}