package updater import "context" // GribService defines the interface for GRIB operations needed by the updater job type GribService interface { Update(ctx context.Context) error }