mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
c89e54888e
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
282 B
Go
15 lines
282 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
|
|
HubLinkOverride string
|
|
}
|