Files
diun/internal/model/job.go
2020-01-19 22:47:18 +01:00

15 lines
230 B
Go

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