All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
17 lines
380 B
Go
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
|
|
}
|