From 4f8577a54795fc850d2b7463257c65b017e0c35c Mon Sep 17 00:00:00 2001 From: crusader Date: Fri, 1 Dec 2017 21:25:57 +0900 Subject: [PATCH] ing --- config/noauthprobe/NoAuthProbeConfig.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/noauthprobe/NoAuthProbeConfig.go b/config/noauthprobe/NoAuthProbeConfig.go index d675ceb..29a2ae7 100644 --- a/config/noauthprobe/NoAuthProbeConfig.go +++ b/config/noauthprobe/NoAuthProbeConfig.go @@ -1,6 +1,6 @@ package noauthprobe -import "git.loafle.net/overflow/overflow_commons_go/util" +import "time" type NoAuthProbeStateType int @@ -10,8 +10,8 @@ const ( ) type NoAuthProbeConfig struct { - TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"` - DenyDate *util.Timestamp `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"` + TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"` + DenyDate *time.Time `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"` } func (c *NoAuthProbeConfig) State() NoAuthProbeStateType {