Files
kubeshark/cli/config/configStructs/checkConfig.go
2022-03-21 15:24:03 +02:00

12 lines
198 B
Go

package configStructs
const (
PreTapCheckName = "pre-tap"
ImagePullCheckName = "image-pull"
)
type CheckConfig struct {
PreTap bool `yaml:"pre-tap"`
ImagePull bool `yaml:"image-pull"`
}