20 lines
360 B
Go
20 lines
360 B
Go
|
package probe
|
||
|
|
||
|
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
|
||
|
}
|