in pkg/pricing/pricing.go [116:124]
func (p *Provider) SpotPrice(instanceType string) (float64, bool) { p.mu.RLock() defer p.mu.RUnlock() price, ok := p.spotPrices[instanceType] if !ok { return 0.0, false } return price, true }