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