dive/runtime/options.go
dwillist 38ccd19ccb extend typical views with a new one displaying fake CNB content
Signed-off-by: dwillist <dthornton@vmware.com>
2020-10-30 13:00:12 -04:00

17 lines
293 B
Go

package runtime
import (
"github.com/spf13/viper"
"github.com/wagoodman/dive/dive"
)
type Options struct {
Ci bool
CNB bool
Image string
Source dive.ImageSource
IgnoreErrors bool
ExportFile string
CiConfig *viper.Viper
BuildArgs []string
}