Fix volume pricing

This commit is contained in:
Jan Gräfen 2021-03-07 00:03:36 +01:00
parent 5487a4e1e1
commit 9362d02aeb

View file

@ -11,7 +11,7 @@ var _ Fetcher = &volume{}
// NewVolume creates a new fetcher that will collect pricing information on volumes.
func NewVolume(pricing *PriceProvider) Fetcher {
return &server{newBase(pricing, "volume", "location", "bytes")}
return &volume{newBase(pricing, "volume", "location", "bytes")}
}
type volume struct {