0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-01-12 11:38:11 +00:00
crazy-max_diun/internal/model/job.go
CrazyMax c89e54888e
Allow customizing the hub link (#648)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-17 15:56:06 +02:00

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
}