20 lines
361 B
Go
20 lines
361 B
Go
package config
|
|
|
|
type ProbeStateType int
|
|
|
|
const (
|
|
ProbeStateTypeNotAuthorized ProbeStateType = iota
|
|
ProbeStateTypeAuthorized
|
|
)
|
|
|
|
type Probe struct {
|
|
Key *string `json:"key,omitempty" yaml:"key" toml:"key"`
|
|
}
|
|
|
|
func (c *Probe) State() ProbeStateType {
|
|
if nil != c.Key && "" != *c.Key {
|
|
return ProbeStateTypeAuthorized
|
|
}
|
|
return ProbeStateTypeNotAuthorized
|
|
}
|