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"` }