trayweather/api.go
2021-03-19 22:27:25 +05:00

8 lines
148 B
Go

package main
type WeatherData interface {
CurrentTemperature() float64
FeelsLikeTemperature() float64
Description() string
IconName() string
}