mirror of
https://github.com/nxshock/trayweather.git
synced 2025-07-04 00:43:16 +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
|
|
}
|