mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-29 06:17:40 +00:00
10 lines
121 B
Go
10 lines
121 B
Go
package configStructs
|
|
|
|
const (
|
|
PreTapCheckName = "pre-tap"
|
|
)
|
|
|
|
type CheckConfig struct {
|
|
PreTap bool `yaml:"pre-tap"`
|
|
}
|