package temperature // Parser provides an interface for parsing temperature strings type Parser interface { Measure() (*Measurement, error) }