13 lines
283 B
Go
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"`
|
|
}
|