This commit is contained in:
crusader 2018-04-13 20:55:05 +09:00
parent 013d496fea
commit 4ada7272de

View File

@ -15,7 +15,9 @@ const (
type Auth struct { type Auth struct {
TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"` TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"`
DenyDate *time.Time `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"`
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 { func (a *Auth) State() AuthStateType {