13 lines
337 B
Go
Raw Normal View History

2017-12-01 18:31:54 +09:00
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"`
}