overflow_probes/config/noauth.go

9 lines
202 B
Go
Raw Normal View History

2017-09-21 08:38:05 +00:00
package config
2017-09-21 11:04:30 +00:00
import "time"
2017-09-21 08:38:05 +00:00
type NoAuthProbeConfig struct {
2017-09-21 11:04:30 +00:00
TempKey string `json:"tempKey" yaml:"tempKey" toml:"tempKey"`
DenyDate time.Time `json:"denyDate" yaml:"denyDate" toml:"denyDate"`
2017-09-21 08:38:05 +00:00
}