Files
seven-skies/internal/app/flow/weather.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
}