12 lines
337 B
Go
12 lines
337 B
Go
package standards
|
|
|
|
// Event kind strings used by weatherfeeder events and routing policy.
|
|
const (
|
|
KindObservation = "observation"
|
|
KindForecast = "forecast"
|
|
KindForecastDiscussion = "forecast_discussion"
|
|
KindWeatherStory = "weather_story"
|
|
KindAlert = "alert"
|
|
KindOutlook = "outlook"
|
|
)
|