predictor/internal/jobs/grib/updater/deps.go
2025-06-23 04:19:26 +03:00

8 lines
184 B
Go

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