mirror of
https://github.com/nxshock/trayweather.git
synced 2025-07-01 00:13:43 +05:00
8 lines
148 B
Go
8 lines
148 B
Go
package main
|
|
|
|
type WeatherData interface {
|
|
CurrentTemperature() float64
|
|
FeelsLikeTemperature() float64
|
|
Description() string
|
|
IconName() string
|
|
}
|