overflow_probes/config/noauth.go
crusader 6fb6bc66d8 ing
2017-09-22 18:20:07 +09:00

13 lines
283 B
Go

package config
import "time"
const (
NoAuthProbeConfigFileName = "noauthprobe.json"
)
type NoAuthProbeConfig struct {
TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"`
DenyDate *time.Time `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"`
}