12 lines
176 B
Go
12 lines
176 B
Go
package flow
|
|
|
|
import "time"
|
|
|
|
type Weather struct {
|
|
Source string
|
|
TargetDate time.Time
|
|
ForecastDate time.Time
|
|
Condition string
|
|
Temperature float64 // Celsius
|
|
}
|