mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-24 06:28:13 +01:00
16 lines
283 B
Go
16 lines
283 B
Go
package model
|
|
|
|
import (
|
|
"github.com/crazy-max/diun/pkg/docker"
|
|
"github.com/crazy-max/diun/pkg/docker/registry"
|
|
)
|
|
|
|
// Job holds job configuration
|
|
type Job struct {
|
|
Provider string
|
|
Image Image
|
|
RegImage registry.Image
|
|
Registry *docker.RegistryClient
|
|
FirstCheck bool
|
|
}
|