Files
diun/internal/model/job.go
CrazyMax 7bff860650 Bump v4
2020-06-07 22:04:31 +02:00

15 lines
233 B
Go

package model
import (
"github.com/crazy-max/diun/v4/pkg/registry"
)
// Job holds job configuration
type Job struct {
Provider string
Image Image
RegImage registry.Image
Registry *registry.Client
FirstCheck bool
}