ipt-loadbalancer/pkg/healthcheck/common/common.go

12 lines
232 B
Go
Raw Normal View History

2023-11-13 23:40:07 +00:00
// Package common contains some helpers used in multiple checks
package common
type (
// SettingHelp is used to render a help for check config
SettingHelp struct {
Name string
Default any
Description string
}
)