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/provider_dockerfile.go
CrazyMax 6ac7139ce2
Dockerfile provider (#329)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2021-04-29 18:15:29 +02:00

16 lines
396 B
Go

package model
// PrdDockerfile holds dockerfile provider configuration
type PrdDockerfile struct {
Patterns []string `yaml:"patterns,omitempty" json:"patterns,omitempty" validate:"omitempty"`
}
// GetDefaults gets the default values
func (s *PrdDockerfile) GetDefaults() *PrdDockerfile {
return nil
}
// SetDefaults sets the default values
func (s *PrdDockerfile) SetDefaults() {
// noop
}