forked from gsn/predictor
8 lines
184 B
Go
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
|
|
}
|