Integrate images into a providers layer

This commit is contained in:
CrazyMax
2019-12-11 22:30:35 +01:00
parent 06d8974fe6
commit a2bfb6534e
8 changed files with 155 additions and 152 deletions

View File

@@ -0,0 +1,8 @@
package model
import "github.com/crazy-max/diun/internal/model/provider"
// Providers represents a provider configuration
type Providers struct {
Image []provider.Image `yaml:"image,omitempty" json:",omitempty"`
}