13 lines
337 B
Go
13 lines
337 B
Go
package config
|
|
|
|
import "git.loafle.net/overflow/overflow_commons_go/util"
|
|
|
|
const (
|
|
NoAuthProbeConfigFileName = "noauthprobe.json"
|
|
)
|
|
|
|
type NoAuthProbeConfig struct {
|
|
TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"`
|
|
DenyDate *util.Timestamp `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"`
|
|
}
|