Files
weatherfeeder/internal/normalizers/openweather/register.go
Eric Rakestraw d0b58a4734
All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
Updates to track feedkit v0.7.2 and to add a dedupe processor
2026-03-16 18:35:44 -05:00

17 lines
380 B
Go

// FILE: ./internal/normalizers/openweather/register.go
package openweather
import (
fknormalize "gitea.maximumdirect.net/ejr/feedkit/processors/normalize"
)
// Register appends OpenWeather normalizers in stable order.
func Register(in []fknormalize.Normalizer) []fknormalize.Normalizer {
out := in
// Observations
out = append(out, ObservationNormalizer{})
return out
}