overflow_commons_go/modules/noauthprobe/config/config.go
crusader ae7d8a8d8c ing
2017-12-01 18:31:54 +09:00

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