mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 14:25:50 +01:00
13 lines
180 B
Go
13 lines
180 B
Go
package runtime
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type Options struct {
|
|
Ci bool
|
|
ImageId string
|
|
ExportFile string
|
|
CiConfig *viper.Viper
|
|
BuildArgs []string
|
|
}
|