From 4ada7272de13cbc417aa1ed36af06bc71dc8058c Mon Sep 17 00:00:00 2001 From: crusader Date: Fri, 13 Apr 2018 20:55:05 +0900 Subject: [PATCH] ing --- noauthprobe/config/auth.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/noauthprobe/config/auth.go b/noauthprobe/config/auth.go index 12cb866..4d7d38c 100644 --- a/noauthprobe/config/auth.go +++ b/noauthprobe/config/auth.go @@ -14,8 +14,10 @@ const ( ) type Auth struct { - TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"` - DenyDate *time.Time `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"` + TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"` + + AcceptedDate *time.Time `json:"acceptedDate,omitempty" yaml:"acceptedDate" toml:"acceptedDate"` + DeniedDate *time.Time `json:"deniedDate,omitempty" yaml:"deniedDate" toml:"deniedDate"` } func (a *Auth) State() AuthStateType {