Files
weatherfeeder/internal/model/alert.go
Eric Rakestraw aa4774e0dd weatherfeeder: split the former maximumdirect.net/weatherd project in two.
feedkit now contains a reusable core, while weatherfeeder is a concrete implementation that includes weather-specific functions.
2026-01-13 18:14:21 -06:00

24 lines
359 B
Go

package model
import "time"
// Placeholder for NWS alerts (GeoJSON feature properties are rich).
type WeatherAlert struct {
ID string
Event string
Headline string
Description string
Instruction string
Severity string
Urgency string
Certainty string
Sent *time.Time
Effective *time.Time
Expires *time.Time
Areas []string
}