2017-09-21 08:38:05 +00:00
|
|
|
package config
|
|
|
|
|
2017-09-21 11:04:30 +00:00
|
|
|
import "time"
|
|
|
|
|
2017-09-22 09:20:07 +00:00
|
|
|
const (
|
|
|
|
NoAuthProbeConfigFileName = "noauthprobe.json"
|
|
|
|
)
|
|
|
|
|
2017-09-21 08:38:05 +00:00
|
|
|
type NoAuthProbeConfig struct {
|
2017-09-22 09:20:07 +00:00
|
|
|
TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"`
|
|
|
|
DenyDate *time.Time `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"`
|
2017-09-21 08:38:05 +00:00
|
|
|
}
|