mirror of
https://github.com/crazy-max/diun.git
synced 2025-02-13 23:51:21 +00:00
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
|
|
}
|